From 4d4328fe7839b426624596287591b59c8f2ee29c Mon Sep 17 00:00:00 2001 From: Ivan Harasymchuk Date: Mon, 29 Nov 2021 16:58:14 +0200 Subject: [PATCH] LeanyLabs #3: Attention box, Alert banner, Toast (#355) * Leany labs/storybook 1 (#1) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * change styling * remove unused files * add spaces Co-authored-by: Kandio16 * Leany labs/storybook 1 (#2) docs: create new storybooks for Avatar, Chip, Toggle tests: change style and expend tests for Avatar, Chip, Toggle, Button * remove obsolete snapshot * revert Button test * remove spaces * chips: style tests * LeanyLabs/storybook 2 (#3) * story: avatar-init * stories: chips * stories/delete-old-stories * stories/add-label * stories/toggle-init * stories/add-ArgsTable * stories/toggle-init * stories/add-checkbox * stories/add-radioButton * stories/fix-btn-group * stories/add-src * stories/fix * stories/add-search-bar-ui * stories/search-person-column * stories/fix * stories/fix * stories/fix * chip/test/init * test/add-chips-tests * clean up * stories/add-icons * stories/add-components * stories/fix-icons-name * stories/small-refactoring * stories/little-fix * stories/fix * test/add-tests-plop * stories/add-link * stories/label-init * stories/add-radio-button * stories/add-RC * stories/add-checkbox * stories/fix-comments * stories/add * stories/fix * stories/merge * stories/some-fix * tests/add-tests * stories/add-link * stories/fix * stories/add-size * fix: small changes in checkbox stories * polishig * renamed file according to styles * polishing * polishing Co-authored-by: Kandio16 * Leany labs/storybook 2a (#4) * fix/fix-coments * minor changes Co-authored-by: Kandio16 * Leany labs/storybook 2b (#5) * stories/fix-comments * stories/add-checkBox-name Co-authored-by: Kandio16 * fix: names for checkbox * fix: add missing link * Leany labs/storybook 3 (#6) docs: create new storybooks for Attention box, Alert banner, Toast tests: change style and expand tests for Attention box, Alert banner, Toast * Leany labs/storybook 3a (#7) * fix * stories/fix-comments * stories/add-toast-test Co-authored-by: Kandio16 * Leany labs/storybook 3b (#8) * stories-3b/init * stories-3b/toasts Co-authored-by: Kandio16 * stories/fix-demo-comments * refactor: remove line before closing bracket Co-authored-by: Kandio16 --- build-storybook.log | 4758 ----------------- .../__stories__/AlertBanner.stories.js | 74 - .../__stories__/alertBanner.stories.mdx | 208 + .../__stories__/alertBanner.stories.scss | 33 + .../AlertBanner/__tests__/AlertBanner-test.js | 62 - .../__snapshots__/AlertBanner.jest.js.snap | 267 - .../alertBanner-snapshot-tests.jest.js.snap | 455 ++ ....js => alertBanner-snapshot-tests.jest.js} | 26 +- .../__tests__/alertBanner-tests.jest.js | 45 + .../__stories__/assets/person.png | Bin 0 -> 35627 bytes .../__stories__/attentionBox.stories.js | 72 - .../__stories__/attentionBox.stories.mdx | 212 + .../__stories__/attentionBox.stories.scss | 101 +- .../attentionBox-snapshot-tests.jest.js.snap | 288 + .../__snapshots__/attentionBox.jest.js.snap | 89 - .../attentionBox-snapshot-tests.jest.js | 58 + .../__tests__/attentionBox-tests.jest.js | 17 + .../__tests__/attentionBox.jest.js | 33 - .../Toast/__stories__/ToastLineWrapper.jsx | 21 + .../Toast/__stories__/toast.stories.js | 116 - .../Toast/__stories__/toast.stories.mdx | 208 + .../Toast/__stories__/toast.stories.scss | 37 + ...snap => toast-snapshot-tests.jest.js.snap} | 85 +- .../__tests__/toast-snapshot-tests.jest.js | 83 + .../Toast/__tests__/toast-tests.jest.js | 46 + src/components/Toast/__tests__/toast.jest.js | 114 - .../component-description-map.js | 9 + .../descriptions/alert-banner-description.jsx | 26 + .../attention-box-description.jsx | 22 + .../descriptions/toast-description.jsx | 25 + 30 files changed, 1973 insertions(+), 5617 deletions(-) delete mode 100644 build-storybook.log delete mode 100644 src/components/AlertBanner/__stories__/AlertBanner.stories.js create mode 100644 src/components/AlertBanner/__stories__/alertBanner.stories.mdx create mode 100644 src/components/AlertBanner/__stories__/alertBanner.stories.scss delete mode 100644 src/components/AlertBanner/__tests__/AlertBanner-test.js delete mode 100644 src/components/AlertBanner/__tests__/__snapshots__/AlertBanner.jest.js.snap create mode 100644 src/components/AlertBanner/__tests__/__snapshots__/alertBanner-snapshot-tests.jest.js.snap rename src/components/AlertBanner/__tests__/{AlertBanner.jest.js => alertBanner-snapshot-tests.jest.js} (82%) create mode 100644 src/components/AlertBanner/__tests__/alertBanner-tests.jest.js create mode 100644 src/components/AttentionBox/__stories__/assets/person.png delete mode 100644 src/components/AttentionBox/__stories__/attentionBox.stories.js create mode 100644 src/components/AttentionBox/__stories__/attentionBox.stories.mdx create mode 100644 src/components/AttentionBox/__tests__/__snapshots__/attentionBox-snapshot-tests.jest.js.snap delete mode 100644 src/components/AttentionBox/__tests__/__snapshots__/attentionBox.jest.js.snap create mode 100644 src/components/AttentionBox/__tests__/attentionBox-snapshot-tests.jest.js create mode 100644 src/components/AttentionBox/__tests__/attentionBox-tests.jest.js delete mode 100644 src/components/AttentionBox/__tests__/attentionBox.jest.js create mode 100644 src/components/Toast/__stories__/ToastLineWrapper.jsx delete mode 100644 src/components/Toast/__stories__/toast.stories.js create mode 100644 src/components/Toast/__stories__/toast.stories.mdx create mode 100644 src/components/Toast/__stories__/toast.stories.scss rename src/components/Toast/__tests__/__snapshots__/{toast.jest.js.snap => toast-snapshot-tests.jest.js.snap} (77%) create mode 100644 src/components/Toast/__tests__/toast-snapshot-tests.jest.js create mode 100644 src/components/Toast/__tests__/toast-tests.jest.js delete mode 100644 src/components/Toast/__tests__/toast.jest.js create mode 100644 src/storybook/components/related-components/descriptions/alert-banner-description.jsx create mode 100644 src/storybook/components/related-components/descriptions/attention-box-description.jsx create mode 100644 src/storybook/components/related-components/descriptions/toast-description.jsx diff --git a/build-storybook.log b/build-storybook.log deleted file mode 100644 index 7638148669..0000000000 --- a/build-storybook.log +++ /dev/null @@ -1,4758 +0,0 @@ -info @storybook/react v6.4.0-rc.1 -info -info => Cleaning outputDir: /var/folders/fq/txf8djz51rqcv1k3418jxv_00000gn/T/chromatic--89944-soVnD5ONcc5R -info => Loading presets -(node:89965) DeprecationWarning: Configuration files such as "config", "presets" and "addons" are deprecated and will be removed in Storybook 7.0. -Read more about it in the migration guide: https://github.com/storybookjs/storybook/blob/master/MIGRATION.md#to-mainjs-configuration -(Use `node --trace-deprecation ...` to show where the warning was created) -info => Loading custom manager config -info => Compiling manager.. -info => Compiling preview.. -info => Loading custom babel config -(node:89965) [DEP0148] DeprecationWarning: Use of deprecated folder mapping "./" in the "exports" field module resolution of the package at /Users/lastexile/code/monday/monday-ui-react-core/node_modules/chai/package.json. -Update this package.json to use a subpath pattern like "./*". -info => Loading custom manager config -WARN Expected '@storybook/addon-docs' (or '@storybook/addon-essentials') to be listed before '@storybook/addon-controls' (or '@storybook/addon-essentials') in main Storybook config. -info => Using implicit CSS loaders -info => Using default Webpack4 setup - [webpack.Progress] 0% compiling - [webpack.Progress] 10% building 0/0 modules 0 active - [webpack.Progress] 10% building 0/1 modules 1 active multi /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/globals/polyfills.js /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/globals/globals.js /Users/lastexile/code/monday/monday-ui-react-core/storybook-init-framework-entry.js /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js-generated-config-entry.js /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js-generated-config-entry.js /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/config-generated-config-entry.js /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-a11y/dist/esm/a11yRunner.js-generated-config-entry.js /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-a11y/dist/esm/a11yHighlight.js-generated-config-entry.js /Users/lastexile/code/monday/monday-ui-react-core/.storybook/preview.js-generated-config-entry.js /Users/lastexile/code/monday/monday-ui-react-core/generated-stories-entry.js - [webpack.Progress] 10% building 1/1 modules 0 active -(node:89965) DeprecationWarning: Default PostCSS plugins are deprecated. When switching to '@storybook/addon-postcss', -you will need to add your own plugins, such as 'postcss-flexbugs-fixes' and 'autoprefixer'. - -See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#deprecated-default-postcss-plugins for details. - [webpack.Progress] 10% building 1/2 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-a11y/dist/esm/a11yRunner.js-generated-config-entry.js - [webpack.Progress] 10% building 1/3 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-a11y/dist/esm/a11yHighlight.js-generated-config-entry.js - [webpack.Progress] 10% building 2/3 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-a11y/dist/esm/a11yHighlight.js-generated-config-entry.js - [webpack.Progress] 10% building 3/3 modules 0 active - [webpack.Progress] 10% building 3/4 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/config-generated-config-entry.js - [webpack.Progress] 10% building 4/4 modules 0 active - [webpack.Progress] 10% building 4/5 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js-generated-config-entry.js - [webpack.Progress] 10% building 4/6 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js-generated-config-entry.js - [webpack.Progress] 10% building 5/6 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js-generated-config-entry.js - [webpack.Progress] 10% building 6/6 modules 0 active - [webpack.Progress] 10% building 6/7 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/globals/globals.js - [webpack.Progress] 10% building 6/8 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/globals/polyfills.js - [webpack.Progress] 10% building 6/9 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-a11y/dist/esm/a11yRunner.js - [webpack.Progress] 10% building 6/10 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-a11y/dist/esm/a11yHighlight.js - [webpack.Progress] 10% building 6/11 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/storybook-init-framework-entry.js - [webpack.Progress] 10% building 6/12 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/generated-stories-entry.js - [webpack.Progress] 10% building 6/13 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/.storybook/preview.js-generated-config-entry.js - [webpack.Progress] 10% building 6/14 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/config.js - [webpack.Progress] 10% building 6/15 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js - [webpack.Progress] 10% building 7/15 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js - [webpack.Progress] 10% building 8/15 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js - [webpack.Progress] 11% building 9/15 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js - [webpack.Progress] 11% building 10/15 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/config.js - [webpack.Progress] 11% building 10/16 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/config.js - [webpack.Progress] 11% building 11/16 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/config.js - [webpack.Progress] 11% building 12/16 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/config.js - [webpack.Progress] 11% building 13/16 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/config.js - [webpack.Progress] 11% building 14/16 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/config.js - [webpack.Progress] 11% building 15/16 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/.storybook/preview.js-generated-config-entry.js - [webpack.Progress] 11% building 15/17 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-a11y/dist/esm/constants.js - [webpack.Progress] 11% building 15/18 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-a11y/dist/esm/highlight.js - [webpack.Progress] 11% building 15/19 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/src sync /^\.(?:(?:^|\/|(?:(?:(?!(?:^|\/)\.).)*?)\/)(?!\.)(?=.)[^/]*?\.stories\.mdx)$/ - [webpack.Progress] 11% building 15/20 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/common/enhanceArgTypes.js - [webpack.Progress] 11% building 15/21 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/extractArgTypes.js - [webpack.Progress] 11% building 15/22 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/jsxDecorator.js - [webpack.Progress] 11% building 16/22 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/jsxDecorator.js - [webpack.Progress] 11% building 16/23 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/webpack/buildin/harmony-module.js - [webpack.Progress] 11% building 16/24 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/webpack/buildin/module.js - [webpack.Progress] 12% building 17/24 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/webpack/buildin/module.js - [webpack.Progress] 12% building 18/24 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/webpack/buildin/module.js - [webpack.Progress] 12% building 18/25 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/.storybook/preview.js - [webpack.Progress] 12% building 18/26 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/render.js - [webpack.Progress] 12% building 19/26 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/render.js - [webpack.Progress] 12% building 20/26 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/render.js - [webpack.Progress] 12% building 21/26 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/render.js - [webpack.Progress] 12% building 22/26 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/render.js - [webpack.Progress] 12% building 23/26 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/render.js - [webpack.Progress] 12% building 24/26 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/.storybook/preview.js - [webpack.Progress] 13% building 25/26 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/.storybook/preview.js - [webpack.Progress] 13% building 25/27 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/shared.js - [webpack.Progress] 13% building 25/28 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/extractProps.js - [webpack.Progress] 13% building 25/29 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/regenerator-runtime/runtime.js - [webpack.Progress] 13% building 25/30 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/index.js - [webpack.Progress] 13% building 25/31 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.from.js - [webpack.Progress] 13% building 25/32 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.iterator.js - [webpack.Progress] 13% building 25/33 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.to-string.js - [webpack.Progress] 13% building 25/34 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.set.js - [webpack.Progress] 13% building 25/35 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/web.dom-collections.iterator.js - [webpack.Progress] 13% building 25/36 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.iterator.js - [webpack.Progress] 13% building 25/37 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.map.js - [webpack.Progress] 13% building 25/38 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.join.js - [webpack.Progress] 13% building 25/39 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.concat.js - [webpack.Progress] 13% building 25/40 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.promise.js - [webpack.Progress] 13% building 25/41 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/global/window.js - [webpack.Progress] 13% building 25/42 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/client-logger/dist/esm/index.js - [webpack.Progress] 13% building 25/43 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/index.js - [webpack.Progress] 13% building 25/44 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/index.js - [webpack.Progress] 13% building 25/45 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 13% building 26/45 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 13% building 27/45 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 13% building 28/45 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 13% building 29/45 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 13% building 30/45 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 13% building 31/45 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 13% building 32/45 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 13% building 33/45 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 14% building 34/45 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 14% building 35/45 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 14% building 36/45 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 14% building 37/45 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 14% building 38/45 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 14% building 39/45 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 14% building 40/45 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/axe-core/axe.js - [webpack.Progress] 14% building 40/46 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/index.js - [webpack.Progress] 14% building 41/46 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/index.js - [webpack.Progress] 15% building 42/46 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/index.js - [webpack.Progress] 15% building 43/46 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/index.js - [webpack.Progress] 15% building 44/46 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/index.js - [webpack.Progress] 15% building 44/47 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/core-events/dist/esm/index.js - [webpack.Progress] 15% building 44/48 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addons/dist/esm/public_api.js - [webpack.Progress] 15% building 45/48 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addons/dist/esm/public_api.js - [webpack.Progress] 15% building 45/49 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/index.js - [webpack.Progress] 15% building 45/50 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.freeze.js - [webpack.Progress] 15% building 45/51 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.slice.js - [webpack.Progress] 15% building 45/52 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.js - [webpack.Progress] 15% building 45/53 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.iterator.js - [webpack.Progress] 15% building 45/54 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.description.js - [webpack.Progress] 15% building 45/55 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.keys.js - [webpack.Progress] 15% building 45/56 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.function.name.js - [webpack.Progress] 15% building 45/57 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.regexp.to-string.js - [webpack.Progress] 15% building 45/58 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.assign.js - [webpack.Progress] 15% building 45/59 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.match.js - [webpack.Progress] 15% building 45/60 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/web.dom-collections.for-each.js - [webpack.Progress] 15% building 45/61 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.replace.js - [webpack.Progress] 15% building 45/62 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.regexp.exec.js - [webpack.Progress] 15% building 45/63 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/webpack/buildin/global.js - [webpack.Progress] 15% building 45/64 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/features/symbol/index.js - [webpack.Progress] 15% building 46/64 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/features/symbol/index.js - [webpack.Progress] 15% building 46/65 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/__stories__/useTimeout.stories.mdx - [webpack.Progress] 15% building 46/66 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/__stories__/useEventListener.stories.mdx - [webpack.Progress] 15% building 46/67 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/__stories__/useClickOutside.stories.mdx - [webpack.Progress] 15% building 46/68 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/typography/typography.stories.mdx - [webpack.Progress] 15% building 46/69 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/globalDesign.stories.mdx - [webpack.Progress] 15% building 46/70 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.mdx - [webpack.Progress] 15% building 46/71 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/__stories__/AlertBanner.stories.mdx - [webpack.Progress] 15% building 46/72 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/avatar.stories.mdx - [webpack.Progress] 15% building 46/73 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/__stories__/ButtonGroup.stories.mdx - [webpack.Progress] 15% building 46/74 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/__stories__/button.stories.mdx - [webpack.Progress] 15% building 46/75 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Checkbox/__stories__/checkbox.stories.mdx - [webpack.Progress] 15% building 46/76 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/__stories__/chips.stories.mdx - [webpack.Progress] 15% building 46/77 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/Changelog/changelog.stories.mdx - [webpack.Progress] 15% building 46/78 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/welcome.stories.mdx - [webpack.Progress] 15% building 46/79 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toggle/__stories__/toggle.stories.mdx - [webpack.Progress] 15% building 46/80 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/__stories__/toast.stories.mdx - [webpack.Progress] 15% building 46/81 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/SplitButton/__stories__/SplitButton.stories.mdx - [webpack.Progress] 15% building 46/82 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/__stories__/radioButton.stories.mdx - [webpack.Progress] 15% building 46/83 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/__stories__/label.stories.mdx - [webpack.Progress] 15% building 46/84 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/__stories__/IconButton.stories.mdx - [webpack.Progress] 15% building 46/85 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--8-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@mdx-js/loader/index.js??ref--8-1!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/__stories__/counter.stories.mdx - [webpack.Progress] 15% building 46/86 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/ClientApi.js - [webpack.Progress] 15% building 47/86 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/ClientApi.js - [webpack.Progress] 15% building 48/86 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/ClientApi.js - [webpack.Progress] 15% building 48/87 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 15% building 49/87 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 16% building 50/87 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 16% building 51/87 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 16% building 52/87 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 16% building 53/87 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 16% building 54/87 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 16% building 55/87 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 16% building 56/87 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 16% building 57/87 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 16% building 58/87 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 17% building 59/87 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 17% building 60/87 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 17% building 61/87 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 17% building 62/87 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 17% building 63/87 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 17% building 64/87 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/typeScript/handleProp.js - [webpack.Progress] 17% building 64/88 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/export.js - [webpack.Progress] 17% building 64/89 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-multibyte.js - [webpack.Progress] 17% building 64/90 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-string-tag-support.js - [webpack.Progress] 17% building 64/91 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/collection.js - [webpack.Progress] 17% building 64/92 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/global.js - [webpack.Progress] 17% building 64/93 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-indexed-object.js - [webpack.Progress] 17% building 65/93 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-indexed-object.js - [webpack.Progress] 17% building 65/94 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es5.js - [webpack.Progress] 17% building 65/95 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/types-6-3.js - [webpack.Progress] 17% building 65/96 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/engine-v8-version.js - [webpack.Progress] 17% building 65/97 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/engine-is-node.js - [webpack.Progress] 17% building 65/98 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/well-known-symbol.js - [webpack.Progress] 17% building 65/99 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/internal-state.js - [webpack.Progress] 17% building 65/100 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-forced.js - [webpack.Progress] 17% building 65/101 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/engine-is-browser.js - [webpack.Progress] 17% building 65/102 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/perform.js - [webpack.Progress] 17% building 65/103 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/new-promise-capability.js - [webpack.Progress] 17% building 65/104 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/host-report-errors.js - [webpack.Progress] 17% building 65/105 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/crypto-browserify/index.js - [webpack.Progress] 17% building 65/106 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react/index.js - [webpack.Progress] 17% building 65/107 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util-deprecate/browser.js - [webpack.Progress] 17% building 66/107 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util-deprecate/browser.js - [webpack.Progress] 17% building 66/108 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/timers-browserify/main.js - [webpack.Progress] 17% building 66/109 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.get-prototype-of.js - [webpack.Progress] 17% building 66/110 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.reflect.construct.js - [webpack.Progress] 17% building 66/111 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/index.js - [webpack.Progress] 17% building 66/112 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/process/browser.js -Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties. -The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding - ["@babel/plugin-proposal-private-methods", { "loose": true }] -to the "plugins" section of your Babel config. -Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties. -The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding - ["@babel/plugin-proposal-private-methods", { "loose": true }] -to the "plugins" section of your Babel config. -Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties. -The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding - ["@babel/plugin-proposal-private-methods", { "loose": true }] -to the "plugins" section of your Babel config. -Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties. -The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding - ["@babel/plugin-proposal-private-methods", { "loose": true }] -to the "plugins" section of your Babel config. -Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties. -The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding - ["@babel/plugin-proposal-private-methods", { "loose": true }] -to the "plugins" section of your Babel config. -Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties. -The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding - ["@babel/plugin-proposal-private-methods", { "loose": true }] -to the "plugins" section of your Babel config. -Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties. -The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding - ["@babel/plugin-proposal-private-methods", { "loose": true }] -to the "plugins" section of your Babel config. -Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties. -The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding - ["@babel/plugin-proposal-private-methods", { "loose": true }] -to the "plugins" section of your Babel config. -Though the "loose" option was set to "false" in your @babel/preset-env config, it will not be used for @babel/plugin-proposal-private-methods since the "loose" mode option was set to "true" for @babel/plugin-proposal-class-properties. -The "loose" option must be the same for @babel/plugin-proposal-class-properties, @babel/plugin-proposal-private-methods and @babel/plugin-proposal-private-property-in-object (when they are enabled): you can silence this warning by explicitly adding - ["@babel/plugin-proposal-private-methods", { "loose": true }] -to the "plugins" section of your Babel config. - [webpack.Progress] 17% building 66/113 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/mdx.js - [webpack.Progress] 17% building 66/114 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addons/dist/esm/index.js - [webpack.Progress] 17% building 66/115 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ts-dedent/dist/index.js - [webpack.Progress] 18% building 67/115 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ts-dedent/dist/index.js - [webpack.Progress] 18% building 68/115 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ts-dedent/dist/index.js - [webpack.Progress] 18% building 69/115 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ts-dedent/dist/index.js - [webpack.Progress] 18% building 70/115 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ts-dedent/dist/index.js - [webpack.Progress] 18% building 71/115 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ts-dedent/dist/index.js - [webpack.Progress] 18% building 72/115 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ts-dedent/dist/index.js - [webpack.Progress] 18% building 72/116 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/types.js - [webpack.Progress] 18% building 73/116 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/types.js - [webpack.Progress] 18% building 73/117 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-dom/index.js - [webpack.Progress] 18% building 74/117 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-dom/index.js - [webpack.Progress] 18% building 74/118 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/define-well-known-symbol.js - [webpack.Progress] 19% building 75/118 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/define-well-known-symbol.js - [webpack.Progress] 19% building 76/118 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/define-well-known-symbol.js - [webpack.Progress] 19% building 77/118 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/define-well-known-symbol.js - [webpack.Progress] 19% building 77/119 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/descriptors.js - [webpack.Progress] 19% building 78/119 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/descriptors.js - [webpack.Progress] 19% building 78/120 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js - [webpack.Progress] 19% building 79/120 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js - [webpack.Progress] 19% building 79/121 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/redefine.js - [webpack.Progress] 19% building 80/121 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/redefine.js - [webpack.Progress] 19% building 81/121 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/redefine.js - [webpack.Progress] 19% building 82/121 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/redefine.js - [webpack.Progress] 19% building 83/121 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/redefine.js - [webpack.Progress] 20% building 84/121 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/redefine.js - [webpack.Progress] 20% building 85/121 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/redefine.js - [webpack.Progress] 20% building 86/121 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/redefine.js - [webpack.Progress] 20% building 86/122 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.map.js - [webpack.Progress] 20% building 86/123 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/index.js - [webpack.Progress] 20% building 86/124 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/dist/cjs/index.js - [webpack.Progress] 20% building 87/124 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/dist/cjs/index.js - [webpack.Progress] 20% building 88/124 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/dist/cjs/index.js - [webpack.Progress] 20% building 89/124 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/dist/cjs/index.js - [webpack.Progress] 20% building 89/125 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec.js - [webpack.Progress] 20% building 90/125 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec.js - [webpack.Progress] 20% building 91/125 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec.js - [webpack.Progress] 21% building 92/125 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec.js - [webpack.Progress] 21% building 93/125 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec.js - [webpack.Progress] 21% building 94/125 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec.js - [webpack.Progress] 21% building 95/125 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec.js - [webpack.Progress] 21% building 96/125 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec.js - [webpack.Progress] 21% building 97/125 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec.js - [webpack.Progress] 21% building 97/126 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-exec-abstract.js - [webpack.Progress] 21% building 97/127 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/get-substitution.js - [webpack.Progress] 21% building 97/128 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/advance-string-index.js - [webpack.Progress] 21% building 97/129 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/require-object-coercible.js - [webpack.Progress] 21% building 97/130 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/esnext.symbol.replace-all.js - [webpack.Progress] 21% building 97/131 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/esnext.symbol.pattern-match.js - [webpack.Progress] 21% building 97/132 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/esnext.symbol.observable.js - [webpack.Progress] 21% building 97/133 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/esnext.symbol.metadata.js - [webpack.Progress] 21% building 97/134 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/esnext.symbol.matcher.js - [webpack.Progress] 21% building 97/135 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/esnext.symbol.dispose.js - [webpack.Progress] 21% building 97/136 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/esnext.symbol.async-dispose.js - [webpack.Progress] 21% building 97/137 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 21% building 98/137 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 21% building 99/137 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 22% building 100/137 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 22% building 101/137 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 22% building 102/137 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 22% building 103/137 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 22% building 104/137 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 22% building 105/137 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 22% building 106/137 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 22% building 107/137 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 22% building 108/137 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 23% building 109/137 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 23% building 110/137 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 23% building 111/137 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 23% building 112/137 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 23% building 113/137 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 23% building 114/137 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 23% building 115/137 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 23% building 116/137 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 24% building 117/137 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 24% building 118/137 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 24% building 119/137 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 24% building 120/137 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 24% building 121/137 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 24% building 122/137 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 24% building 123/137 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 24% building 124/137 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 25% building 125/137 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/StoryStoreFacade.js - [webpack.Progress] 25% building 125/138 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react/cjs/react.production.min.js - [webpack.Progress] 25% building 125/139 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-integer.js - [webpack.Progress] 25% building 125/140 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/inherit-if-required.js - [webpack.Progress] 25% building 125/141 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/copy-constructor-properties.js - [webpack.Progress] 25% building 125/142 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-to-string-tag.js - [webpack.Progress] 25% building 126/142 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-to-string-tag.js - [webpack.Progress] 25% building 127/142 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-to-string-tag.js - [webpack.Progress] 25% building 128/142 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-to-string-tag.js - [webpack.Progress] 25% building 129/142 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-to-string-tag.js - [webpack.Progress] 25% building 130/142 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-to-string-tag.js - [webpack.Progress] 25% building 131/142 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-to-string-tag.js - [webpack.Progress] 25% building 132/142 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-to-string-tag.js - [webpack.Progress] 25% building 133/142 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-to-string-tag.js - [webpack.Progress] 25% building 133/143 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/check-correctness-of-iteration.js - [webpack.Progress] 25% building 133/144 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/indexed-object.js - [webpack.Progress] 26% building 134/144 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/indexed-object.js - [webpack.Progress] 26% building 135/144 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/indexed-object.js - [webpack.Progress] 26% building 136/144 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/indexed-object.js - [webpack.Progress] 26% building 137/144 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/indexed-object.js - [webpack.Progress] 26% building 137/145 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/types-6-0.js - [webpack.Progress] 26% building 137/146 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/engine-user-agent.js - [webpack.Progress] 26% building 137/147 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/use-symbol-as-uid.js - [webpack.Progress] 26% building 137/148 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/classof-raw.js - [webpack.Progress] 26% building 137/149 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/native-symbol.js - [webpack.Progress] 26% building 137/150 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/uid.js - [webpack.Progress] 26% building 137/151 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/native-weak-map.js - [webpack.Progress] 26% building 137/152 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/fails.js - [webpack.Progress] 26% building 137/153 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/hidden-keys.js - [webpack.Progress] 26% building 137/154 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/a-function.js - [webpack.Progress] 26% building 137/155 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/shared-key.js - [webpack.Progress] 26% building 137/156 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/correct-prototype-getter.js - [webpack.Progress] 26% building 137/157 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/function-bind.js - [webpack.Progress] 26% building 137/158 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/captions.js - [webpack.Progress] 26% building 137/159 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/index.js - [webpack.Progress] 26% building 137/160 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-dom/cjs/react-dom.production.min.js - [webpack.Progress] 26% building 138/160 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-dom/cjs/react-dom.production.min.js - [webpack.Progress] 26% building 138/161 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addons/dist/esm/types.js - [webpack.Progress] 26% building 138/162 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooksDummyComponents/UseTimeout.jsx - [webpack.Progress] 26% building 138/163 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 26% building 139/163 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 26% building 140/163 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 26% building 141/163 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 27% building 142/163 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 27% building 143/163 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 27% building 144/163 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 27% building 145/163 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 27% building 146/163 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 27% building 147/163 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 27% building 148/163 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 27% building 149/163 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.jsx - [webpack.Progress] 27% building 149/164 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/path.js - [webpack.Progress] 28% building 150/164 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/path.js - [webpack.Progress] 28% building 151/164 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/path.js - [webpack.Progress] 28% building 152/164 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/path.js - [webpack.Progress] 28% building 153/164 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/path.js - [webpack.Progress] 28% building 154/164 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/path.js - [webpack.Progress] 28% building 155/164 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/path.js - [webpack.Progress] 28% building 155/165 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/inspect-source.js - [webpack.Progress] 28% building 155/166 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/collection-strong.js - [webpack.Progress] 28% building 155/167 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/StoryStore.js - [webpack.Progress] 28% building 155/168 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/raw-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/CHANGELOG.md - [webpack.Progress] 28% building 155/169 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-flags.js - [webpack.Progress] 28% building 156/169 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-flags.js - [webpack.Progress] 28% building 157/169 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-flags.js - [webpack.Progress] 28% building 158/169 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-flags.js - [webpack.Progress] 28% building 158/170 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/StoryBookComponents/StoryWrapper/StoryWrapper.jsx - [webpack.Progress] 28% building 158/171 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-unsupported-ncg.js - [webpack.Progress] 28% building 158/172 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-object.js - [webpack.Progress] 28% building 158/173 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-unsupported-dot-all.js - [webpack.Progress] 28% building 158/174 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-create.js - [webpack.Progress] 28% building 158/175 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/regexp-sticky-helpers.js - [webpack.Progress] 28% building 158/176 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/shared.js - [webpack.Progress] 28% building 158/177 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/sortStories.js - [webpack.Progress] 29% building 159/177 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/sortStories.js - [webpack.Progress] 29% building 159/178 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/autoTitle.js - [webpack.Progress] 29% building 160/178 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/autoTitle.js - [webpack.Progress] 29% building 161/178 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/autoTitle.js - [webpack.Progress] 29% building 162/178 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/autoTitle.js - [webpack.Progress] 29% building 163/178 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/autoTitle.js - [webpack.Progress] 29% building 164/178 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/autoTitle.js - [webpack.Progress] 29% building 165/178 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/autoTitle.js - [webpack.Progress] 29% building 166/178 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/autoTitle.js - [webpack.Progress] 30% building 167/178 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/autoTitle.js - [webpack.Progress] 30% building 167/179 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.values.js - [webpack.Progress] 30% building 167/180 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.entries.js - [webpack.Progress] 30% building 167/181 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-set-prototype-of.js - [webpack.Progress] 30% building 167/182 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/has.js - [webpack.Progress] 30% building 167/183 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-object.js - [webpack.Progress] 30% building 167/184 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-property.js - [webpack.Progress] 30% building 168/184 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-property.js - [webpack.Progress] 30% building 169/184 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-property.js - [webpack.Progress] 30% building 170/184 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-property.js - [webpack.Progress] 30% building 171/184 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-property.js - [webpack.Progress] 30% building 172/184 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-property.js - [webpack.Progress] 30% building 173/184 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-property.js - [webpack.Progress] 30% building 174/184 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-property.js - [webpack.Progress] 31% building 175/184 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-property.js - [webpack.Progress] 31% building 175/185 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 31% building 175/186 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/__stories__/general-hooks-stories.scss - [webpack.Progress] 31% building 176/186 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 31% building 176/187 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/typography/typography.scss - [webpack.Progress] 31% building 177/187 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 31% building 177/188 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.scss - [webpack.Progress] 31% building 178/188 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 31% building 178/189 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/__stories__/buttonGroup.stories.scss - [webpack.Progress] 31% building 179/189 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 31% building 179/190 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Checkbox/__stories__/checkbox.stories.scss - [webpack.Progress] 31% building 180/190 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 31% building 180/191 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/__stories__/toast.stories.scss - [webpack.Progress] 31% building 181/191 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 31% building 181/192 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/SplitButton/__stories__/splitButton.stories.scss - [webpack.Progress] 31% building 182/192 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 31% building 182/193 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/__stories__/AlertBanner.stories.scss - [webpack.Progress] 31% building 183/193 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 31% building 183/194 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/__stories__/counter.stories.scss - [webpack.Progress] 32% building 184/194 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 32% building 184/195 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/__stories__/radioButton.stories.scss - [webpack.Progress] 32% building 185/195 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 32% building 185/196 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toggle/__stories__/toggle.stories.scss - [webpack.Progress] 32% building 186/196 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 32% building 186/197 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/__stories__/label.stories.scss - [webpack.Progress] 32% building 187/197 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 32% building 187/198 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/__stories__/chips.stories.scss - [webpack.Progress] 32% building 188/198 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 32% building 188/199 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/avatar.stories.scss - [webpack.Progress] 32% building 189/199 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 32% building 189/200 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/__stories__/button.stories.scss - [webpack.Progress] 32% building 190/200 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 32% building 190/201 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/__stories__/IconButton.stories.scss - [webpack.Progress] 32% building 191/201 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-descriptor.js - [webpack.Progress] 32% building 191/202 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/typography/typography.scss - [webpack.Progress] 32% building 191/203 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/own-keys.js - [webpack.Progress] 32% building 191/204 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/get-built-in.js - [webpack.Progress] 32% building 191/205 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/index.js - [webpack.Progress] 33% building 192/205 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/index.js - [webpack.Progress] 33% building 193/205 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/index.js - [webpack.Progress] 33% building 194/205 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/index.js - [webpack.Progress] 33% building 194/206 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/globals.js - [webpack.Progress] 33% building 195/206 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/react/dist/esm/client/preview/globals.js - [webpack.Progress] 33% building 195/207 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/__stories__/IconButton.stories.scss - [webpack.Progress] 33% building 196/207 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/__stories__/IconButton.stories.scss - [webpack.Progress] 33% building 197/207 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/__stories__/IconButton.stories.scss - [webpack.Progress] 33% building 198/207 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/__stories__/IconButton.stories.scss - [webpack.Progress] 33% building 198/208 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/args.js - [webpack.Progress] 33% building 198/209 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/es/symbol/index.js - [webpack.Progress] 33% building 199/209 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/es/symbol/index.js - [webpack.Progress] 33% building 199/210 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/index.js - [webpack.Progress] 34% building 200/210 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/index.js - [webpack.Progress] 34% building 201/210 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/index.js - [webpack.Progress] 34% building 202/210 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/index.js - [webpack.Progress] 34% building 202/211 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/decorators.js - [webpack.Progress] 34% building 202/212 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/shared-store.js - [webpack.Progress] 34% building 203/212 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/shared-store.js - [webpack.Progress] 34% building 204/212 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/shared-store.js - [webpack.Progress] 34% building 204/213 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/inferControls.js - [webpack.Progress] 34% building 204/214 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/normalizeInputTypes.js - [webpack.Progress] 34% building 204/215 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/an-object.js - [webpack.Progress] 34% building 204/216 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/inferArgTypes.js - [webpack.Progress] 34% building 204/217 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/hooks.js - [webpack.Progress] 34% building 204/218 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/processCSFFile.js - [webpack.Progress] 34% building 204/219 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/GlobalsStore.js - [webpack.Progress] 34% building 204/220 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/ArgsStore.js - [webpack.Progress] 34% building 204/221 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/StoryIndexStore.js - [webpack.Progress] 34% building 204/222 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/prepareStory.js - [webpack.Progress] 34% building 204/223 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/document-create-element.js - [webpack.Progress] 34% building 204/224 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-pure.js - [webpack.Progress] 34% building 204/225 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.scss - [webpack.Progress] 34% building 205/225 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-pure.js - [webpack.Progress] 34% building 206/225 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-pure.js - [webpack.Progress] 34% building 206/226 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/other-contributors-list/other-contributors-list.scss - [webpack.Progress] 34% building 206/227 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es5-shim/es5-shim.js - [webpack.Progress] 34% building 206/228 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/randombytes/browser.js - [webpack.Progress] 34% building 206/229 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/randomfill/browser.js - [webpack.Progress] 34% building 206/230 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/browser.js - [webpack.Progress] 34% building 206/231 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js - [webpack.Progress] 34% building 206/232 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/StoryBookComponents/StoryWrapper/StoryWrapper.scss - [webpack.Progress] 34% building 207/232 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js - [webpack.Progress] 34% building 207/233 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/StoryBookComponents/StoryWrapper/StoryWrapper.scss - [webpack.Progress] 34% building 207/234 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/setimmediate/setImmediate.js - [webpack.Progress] 34% building 208/234 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/setimmediate/setImmediate.js - [webpack.Progress] 35% building 209/234 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/setimmediate/setImmediate.js - [webpack.Progress] 35% building 209/235 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 35% building 210/235 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 35% building 211/235 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 35% building 212/235 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 35% building 213/235 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 35% building 214/235 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 35% building 215/235 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 35% building 215/236 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-to-array.js - [webpack.Progress] 35% building 216/236 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-to-array.js - [webpack.Progress] 36% building 217/236 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-to-array.js - [webpack.Progress] 36% building 218/236 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-to-array.js - [webpack.Progress] 36% building 219/236 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-to-array.js - [webpack.Progress] 36% building 220/236 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-to-array.js - [webpack.Progress] 36% building 221/236 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-to-array.js - [webpack.Progress] 36% building 222/236 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-to-array.js - [webpack.Progress] 36% building 222/237 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/index.jsx - [webpack.Progress] 36% building 222/238 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/a-possible-prototype.js - [webpack.Progress] 36% building 222/239 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-primitive.js - [webpack.Progress] 36% building 223/239 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-primitive.js - [webpack.Progress] 36% building 224/239 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-primitive.js - [webpack.Progress] 36% building 224/240 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.filter.js - [webpack.Progress] 36% building 224/241 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/ie8-dom-define.js - [webpack.Progress] 37% building 225/241 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/ie8-dom-define.js - [webpack.Progress] 37% building 225/242 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.regexp.constructor.js - [webpack.Progress] 37% building 226/242 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.regexp.constructor.js - [webpack.Progress] 37% building 227/242 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.regexp.constructor.js - [webpack.Progress] 37% building 228/242 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.regexp.constructor.js - [webpack.Progress] 37% building 229/242 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.regexp.constructor.js - [webpack.Progress] 37% building 230/242 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.regexp.constructor.js - [webpack.Progress] 37% building 231/242 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.regexp.constructor.js - [webpack.Progress] 37% building 231/243 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-symbols.js - [webpack.Progress] 37% building 232/243 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-symbols.js - [webpack.Progress] 37% building 232/244 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.find.js - [webpack.Progress] 37% building 232/245 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-plain-object/dist/is-plain-object.mjs - [webpack.Progress] 37% building 233/245 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-plain-object/dist/is-plain-object.mjs - [webpack.Progress] 37% building 233/246 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/synchronous-promise/index.js - [webpack.Progress] 37% building 233/247 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/node_modules/react-is/index.js - [webpack.Progress] 38% building 234/247 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/node_modules/react-is/index.js - [webpack.Progress] 38% building 235/247 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/node_modules/react-is/index.js - [webpack.Progress] 38% building 235/248 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/Loader/Loader.js - [webpack.Progress] 38% building 236/248 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/Loader/Loader.js - [webpack.Progress] 38% building 237/248 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/Loader/Loader.js - [webpack.Progress] 38% building 237/249 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.reflect.to-string-tag.js - [webpack.Progress] 38% building 237/250 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/brand/StorybookIcon.js - [webpack.Progress] 38% building 237/251 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/brand/StorybookLogo.js - [webpack.Progress] 38% building 238/251 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/brand/StorybookLogo.js - [webpack.Progress] 38% building 238/252 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createDefaultValue.js - [webpack.Progress] 38% building 238/253 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@base2/pretty-print-object/dist/index.js - [webpack.Progress] 38% building 239/253 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@base2/pretty-print-object/dist/index.js - [webpack.Progress] 38% building 239/254 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-global.js - [webpack.Progress] 38% building 239/255 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/bar/bar.js - [webpack.Progress] 38% building 239/256 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/bar/separator.js - [webpack.Progress] 38% building 239/257 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/bar/button.js - [webpack.Progress] 38% building 239/258 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/icon/icon.js - [webpack.Progress] 38% building 239/259 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/TooltipNote.js - [webpack.Progress] 38% building 239/260 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/TooltipLinkList.js - [webpack.Progress] 38% building 239/261 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/TooltipMessage.js - [webpack.Progress] 38% building 239/262 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/lazy-WithTooltip.js - [webpack.Progress] 38% building 239/263 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tabs/tabs.js - [webpack.Progress] 38% building 239/264 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/addon-panel/addon-panel.js - [webpack.Progress] 38% building 239/265 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/form/index.js - [webpack.Progress] 38% building 239/266 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/Zoom/Zoom.js - [webpack.Progress] 38% building 239/267 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/Button/Button.js - [webpack.Progress] 38% building 239/268 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/ScrollArea/ScrollArea.js - [webpack.Progress] 38% building 239/269 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/placeholder/placeholder.js - [webpack.Progress] 38% building 239/270 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/parameters.js - [webpack.Progress] 38% building 239/271 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core/client.js - [webpack.Progress] 38% building 240/271 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core/client.js - [webpack.Progress] 38% building 241/271 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core/client.js - [webpack.Progress] 39% building 242/271 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core/client.js - [webpack.Progress] 39% building 243/271 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core/client.js - [webpack.Progress] 39% building 243/272 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/publicEncrypt.js - [webpack.Progress] 39% building 243/273 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/privateDecrypt.js - [webpack.Progress] 39% building 244/273 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/privateDecrypt.js - [webpack.Progress] 39% building 245/273 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/privateDecrypt.js - [webpack.Progress] 39% building 245/274 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 39% building 246/274 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 39% building 247/274 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 39% building 247/275 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/mapValues.js - [webpack.Progress] 39% building 247/276 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/pick.js - [webpack.Progress] 39% building 247/277 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.split.js - [webpack.Progress] 39% building 248/277 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.split.js - [webpack.Progress] 39% building 248/278 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/runtime/api.js - [webpack.Progress] 39% building 249/278 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/runtime/api.js - [webpack.Progress] 39% building 249/279 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object-assign/index.js - [webpack.Progress] 39% building 249/280 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 40% building 250/280 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 40% building 251/280 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 40% building 252/280 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 40% building 253/280 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 40% building 254/280 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 40% building 255/280 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 40% building 256/280 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 40% building 257/280 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 40% building 258/280 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 41% building 259/280 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 41% building 260/280 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 41% building 261/280 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 41% building 262/280 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 41% building 263/280 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 41% building 264/280 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 41% building 265/280 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 41% building 266/280 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/index.js - [webpack.Progress] 41% building 266/281 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-property-is-enumerable.js - [webpack.Progress] 41% building 266/282 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-keys.js - [webpack.Progress] 42% building 267/282 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-keys.js - [webpack.Progress] 42% building 267/283 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-iteration.js - [webpack.Progress] 42% building 267/284 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-method-has-species-support.js - [webpack.Progress] 42% building 268/284 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-method-has-species-support.js - [webpack.Progress] 42% building 268/285 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-species.js - [webpack.Progress] 42% building 269/285 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-species.js - [webpack.Progress] 42% building 270/285 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/set-species.js - [webpack.Progress] 42% building 270/286 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoizerific/memoizerific.js - [webpack.Progress] 42% building 270/287 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-regexp.js - [webpack.Progress] 42% building 271/287 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-regexp.js - [webpack.Progress] 42% building 272/287 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-regexp.js - [webpack.Progress] 42% building 272/288 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/node_modules/react-is/cjs/react-is.production.min.js - [webpack.Progress] 42% building 273/288 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/node_modules/react-is/cjs/react-is.production.min.js - [webpack.Progress] 42% building 274/288 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-element-to-jsx-string/node_modules/react-is/cjs/react-is.production.min.js - [webpack.Progress] 42% building 274/289 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-names.js - [webpack.Progress] 43% building 275/289 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-names.js - [webpack.Progress] 43% building 276/289 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-names.js - [webpack.Progress] 43% building 277/289 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-names.js - [webpack.Progress] 43% building 277/290 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/add-to-unscopables.js - [webpack.Progress] 43% building 277/291 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-non-enumerable-property.js - [webpack.Progress] 43% building 278/291 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-non-enumerable-property.js - [webpack.Progress] 43% building 279/291 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-non-enumerable-property.js - [webpack.Progress] 43% building 280/291 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-non-enumerable-property.js - [webpack.Progress] 43% building 281/291 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-non-enumerable-property.js - [webpack.Progress] 43% building 282/291 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-non-enumerable-property.js - [webpack.Progress] 43% building 282/292 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/prop-types/index.js - [webpack.Progress] 43% building 282/293 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/prettyIdentifier.js - [webpack.Progress] 43% building 282/294 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/generateArray.js - [webpack.Progress] 43% building 282/295 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/generateObject.js - [webpack.Progress] 43% building 282/296 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/generateCode.js - [webpack.Progress] 43% building 282/297 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/isHtmlTag.js - [webpack.Progress] 43% building 283/297 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/isHtmlTag.js - [webpack.Progress] 44% building 284/297 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/isHtmlTag.js - [webpack.Progress] 44% building 285/297 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/isHtmlTag.js - [webpack.Progress] 44% building 286/297 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/isHtmlTag.js - [webpack.Progress] 44% building 286/298 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/shared/animation.js - [webpack.Progress] 44% building 287/298 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/shared/animation.js - [webpack.Progress] 44% building 288/298 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/shared/animation.js - [webpack.Progress] 44% building 288/299 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/scheduler/cjs/scheduler.production.min.js - [webpack.Progress] 44% building 288/300 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/classnames/index.js - [webpack.Progress] 44% building 288/301 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/startCase.js - [webpack.Progress] 44% building 288/302 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 44% building 288/303 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseAssignValue.js - [webpack.Progress] 44% building 288/304 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_basePick.js - [webpack.Progress] 44% building 288/305 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-length.js - [webpack.Progress] 44% building 289/305 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-length.js - [webpack.Progress] 44% building 289/306 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/index.js - [webpack.Progress] 44% building 290/306 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/index.js - [webpack.Progress] 44% building 291/306 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/index.js - [webpack.Progress] 45% building 292/306 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/index.js - [webpack.Progress] 45% building 293/306 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/index.js - [webpack.Progress] 45% building 294/306 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/index.js - [webpack.Progress] 45% building 294/307 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/species-constructor.js - [webpack.Progress] 45% building 294/308 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_flatRest.js - [webpack.Progress] 45% building 294/309 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/index.js - [webpack.Progress] 45% building 294/310 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-name/component-name.jsx - [webpack.Progress] 45% building 294/311 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/paragraph/paragraph.jsx - [webpack.Progress] 45% building 294/312 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIteratee.js - [webpack.Progress] 45% building 294/313 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseForOwn.js - [webpack.Progress] 45% building 294/314 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-keys-internal.js - [webpack.Progress] 45% building 294/315 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core/dist/cjs/index.js - [webpack.Progress] 45% building 295/315 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core/dist/cjs/index.js - [webpack.Progress] 45% building 295/316 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/function-bind-context.js - [webpack.Progress] 45% building 295/317 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-species-create.js - [webpack.Progress] 45% building 295/318 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/enum-bug-keys.js - [webpack.Progress] 45% building 295/319 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/withPublic.js - [webpack.Progress] 45% building 296/319 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/withPublic.js - [webpack.Progress] 45% building 297/319 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/withPublic.js - [webpack.Progress] 45% building 297/320 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/xor.js - [webpack.Progress] 45% building 297/321 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 45% building 298/321 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 45% building 299/321 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 46% building 300/321 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 46% building 301/321 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 46% building 302/321 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 46% building 303/321 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 46% building 304/321 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 46% building 305/321 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 46% building 306/321 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/mgf.js - [webpack.Progress] 46% building 306/322 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/safe-buffer/index.js - [webpack.Progress] 46% building 306/323 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-property-descriptor.js - [webpack.Progress] 46% building 307/323 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-property-descriptor.js - [webpack.Progress] 46% building 308/323 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-property-descriptor.js - [webpack.Progress] 47% building 309/323 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-property-descriptor.js - [webpack.Progress] 47% building 310/323 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-property-descriptor.js - [webpack.Progress] 47% building 310/324 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link/link.jsx - [webpack.Progress] 47% building 310/325 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/multiple-story-elements-wrapper/multiple-story-elements-wrapper.jsx - [webpack.Progress] 47% building 310/326 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.starts-with.js - [webpack.Progress] 47% building 310/327 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/doc-footer/doc-footer.jsx - [webpack.Progress] 47% building 311/327 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/doc-footer/doc-footer.jsx - [webpack.Progress] 47% building 312/327 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/doc-footer/doc-footer.jsx - [webpack.Progress] 47% building 312/328 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/anchor-list-item/anchor-list-item.jsx - [webpack.Progress] 47% building 312/329 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/related-components.jsx - [webpack.Progress] 47% building 312/330 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/usage-guidelines/usage-guidelines.jsx - [webpack.Progress] 47% building 312/331 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rules/component-rules.jsx - [webpack.Progress] 47% building 313/331 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rules/component-rules.jsx - [webpack.Progress] 47% building 314/331 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rules/component-rules.jsx - [webpack.Progress] 47% building 314/332 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/tip/tip.jsx - [webpack.Progress] 47% building 315/332 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/tip/tip.jsx - [webpack.Progress] 47% building 315/333 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.bold.js - [webpack.Progress] 47% building 316/333 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.bold.js - [webpack.Progress] 47% building 316/334 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.small.js - [webpack.Progress] 47% building 316/335 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/prop-types/factoryWithThrowingShims.js - [webpack.Progress] 48% building 317/335 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/prop-types/factoryWithThrowingShims.js - [webpack.Progress] 48% building 318/335 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/prop-types/factoryWithThrowingShims.js - [webpack.Progress] 48% building 318/336 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/section-name/section-name.jsx - [webpack.Progress] 48% building 318/337 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/title/title.jsx - [webpack.Progress] 48% building 318/338 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isPlainObject.js - [webpack.Progress] 48% building 319/338 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isPlainObject.js - [webpack.Progress] 48% building 320/338 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isPlainObject.js - [webpack.Progress] 48% building 321/338 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isPlainObject.js - [webpack.Progress] 48% building 321/339 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_createCompounder.js - [webpack.Progress] 48% building 321/340 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/upperFirst.js - [webpack.Progress] 48% building 322/340 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/upperFirst.js - [webpack.Progress] 48% building 322/341 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_defineProperty.js - [webpack.Progress] 48% building 322/342 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_basePickBy.js - [webpack.Progress] 48% building 323/342 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_basePickBy.js - [webpack.Progress] 48% building 324/342 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_basePickBy.js - [webpack.Progress] 49% building 325/342 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_basePickBy.js - [webpack.Progress] 49% building 325/343 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/index.js - [webpack.Progress] 49% building 325/344 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/Color.js - [webpack.Progress] 49% building 325/345 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/flatten.js - [webpack.Progress] 49% building 325/346 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/Description.js - [webpack.Progress] 49% building 325/347 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/IconGallery.js - [webpack.Progress] 49% building 325/348 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseMatches.js - [webpack.Progress] 49% building 326/348 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseMatches.js - [webpack.Progress] 49% building 326/349 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseFor.js - [webpack.Progress] 49% building 326/350 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-includes.js - [webpack.Progress] 49% building 326/351 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/keys.js - [webpack.Progress] 49% building 326/352 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isArray.js - [webpack.Progress] 49% building 326/353 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/property.js - [webpack.Progress] 49% building 326/354 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/identity.js - [webpack.Progress] 49% building 326/355 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ColorPalette.js - [webpack.Progress] 49% building 326/356 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/Typeset.js - [webpack.Progress] 49% building 326/357 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseMatchesProperty.js - [webpack.Progress] 49% building 326/358 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/IFrame.js - [webpack.Progress] 49% building 326/359 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/Story.js - [webpack.Progress] 49% building 326/360 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/Source.js - [webpack.Progress] 49% building 326/361 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/Preview.js - [webpack.Progress] 49% building 326/362 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-name/component-name.scss - [webpack.Progress] 49% building 327/362 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/Preview.js - [webpack.Progress] 49% building 327/363 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-name/component-name.scss - [webpack.Progress] 49% building 327/364 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_setToString.js - [webpack.Progress] 49% building 327/365 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js - [webpack.Progress] 49% building 328/365 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/DocsPage.js - [webpack.Progress] 49% building 328/366 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_overRest.js - [webpack.Progress] 49% building 328/367 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/Files.js - [webpack.Progress] 49% building 328/368 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/Text.js - [webpack.Progress] 49% building 328/369 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/Range.js - [webpack.Progress] 49% building 328/370 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/Object.js - [webpack.Progress] 49% building 329/370 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/Object.js - [webpack.Progress] 49% building 329/371 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/Number.js - [webpack.Progress] 49% building 329/372 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/Date.js - [webpack.Progress] 49% building 329/373 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/Boolean.js - [webpack.Progress] 49% building 329/374 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/types.js - [webpack.Progress] 49% building 329/375 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/hasIn.js - [webpack.Progress] 49% building 329/376 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-array.js - [webpack.Progress] 49% building 329/377 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/ScrollArea/OverlayScrollbars.js - [webpack.Progress] 49% building 329/378 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/ScrollArea/GlobalScrollAreaStyles.js - [webpack.Progress] 49% building 329/379 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/Zoom/ZoomIFrame.js - [webpack.Progress] 49% building 329/380 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/Zoom/ZoomElement.js - [webpack.Progress] 49% building 329/381 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/index.js - [webpack.Progress] 49% building 330/381 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/index.js - [webpack.Progress] 49% building 331/381 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/index.js - [webpack.Progress] 49% building 332/381 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/index.js - [webpack.Progress] 49% building 332/382 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 49% building 333/382 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 50% building 334/382 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 50% building 335/382 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 50% building 336/382 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 50% building 337/382 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 50% building 338/382 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 50% building 339/382 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 50% building 340/382 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 50% building 341/382 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/polished/dist/polished.esm.js - [webpack.Progress] 50% building 341/383 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/index.js - [webpack.Progress] 50% building 341/384 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/form/input/input.js - [webpack.Progress] 50% building 341/385 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/form/field/field.js - [webpack.Progress] 50% building 341/386 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 51% building 342/386 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 51% building 343/386 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 51% building 344/386 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 51% building 345/386 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 51% building 346/386 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 51% building 347/386 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 51% building 348/386 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 51% building 349/386 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 52% building 350/386 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 52% building 351/386 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 52% building 352/386 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 52% building 353/386 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 52% building 354/386 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 52% building 355/386 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 52% building 356/386 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 52% building 357/386 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 52% building 358/386 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 53% building 359/386 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 53% building 359/387 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/buffer/index.js - [webpack.Progress] 53% building 360/387 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/buffer/index.js - [webpack.Progress] 53% building 361/387 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/buffer/index.js - [webpack.Progress] 53% building 362/387 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/buffer/index.js - [webpack.Progress] 53% building 362/388 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/index.js - [webpack.Progress] 53% building 363/388 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/index.js - [webpack.Progress] 53% building 364/388 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/index.js - [webpack.Progress] 53% building 365/388 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/index.js - [webpack.Progress] 53% building 366/388 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/index.js - [webpack.Progress] 54% building 367/388 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/index.js - [webpack.Progress] 54% building 368/388 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/index.js - [webpack.Progress] 54% building 369/388 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/index.js - [webpack.Progress] 54% building 369/389 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/correct-is-regexp-logic.js - [webpack.Progress] 54% building 370/389 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/correct-is-regexp-logic.js - [webpack.Progress] 54% building 371/389 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/correct-is-regexp-logic.js - [webpack.Progress] 54% building 372/389 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/correct-is-regexp-logic.js - [webpack.Progress] 54% building 373/389 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/correct-is-regexp-logic.js - [webpack.Progress] 54% building 373/390 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.includes.js - [webpack.Progress] 54% building 374/390 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.includes.js - [webpack.Progress] 54% building 375/390 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.includes.js - [webpack.Progress] 55% building 376/390 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.includes.js - [webpack.Progress] 55% building 377/390 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.includes.js - [webpack.Progress] 55% building 377/391 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/multiple-story-elements-wrapper/multiple-story-elements-wrapper.scss - [webpack.Progress] 55% building 378/391 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.includes.js - [webpack.Progress] 55% building 378/392 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/multiple-story-elements-wrapper/multiple-story-elements-wrapper.scss - [webpack.Progress] 55% building 378/393 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-html-forced.js - [webpack.Progress] 55% building 379/393 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-html-forced.js - [webpack.Progress] 55% building 380/393 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-html-forced.js - [webpack.Progress] 55% building 380/394 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/doc-footer/doc-footer.scss - [webpack.Progress] 55% building 381/394 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-html-forced.js - [webpack.Progress] 55% building 381/395 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/doc-footer/doc-footer.scss - [webpack.Progress] 55% building 381/396 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.includes.js - [webpack.Progress] 55% building 382/396 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.includes.js - [webpack.Progress] 55% building 382/397 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-html.js - [webpack.Progress] 55% building 382/398 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/anchor-list-item/anchor-list-item.scss - [webpack.Progress] 55% building 383/398 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-html.js - [webpack.Progress] 55% building 383/399 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/anchor-list-item/anchor-list-item.scss - [webpack.Progress] 55% building 383/400 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/usage-guidelines/usage-guideline.scss - [webpack.Progress] 56% building 384/400 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/anchor-list-item/anchor-list-item.scss - [webpack.Progress] 56% building 384/401 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/usage-guidelines/usage-guideline.scss - [webpack.Progress] 56% building 384/402 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rules/component-rules.scss - [webpack.Progress] 56% building 385/402 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/usage-guidelines/usage-guideline.scss - [webpack.Progress] 56% building 385/403 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rules/component-rules.scss - [webpack.Progress] 56% building 385/404 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/tip/tip.scss - [webpack.Progress] 56% building 386/404 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rules/component-rules.scss - [webpack.Progress] 56% building 386/405 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/tip/tip.scss - [webpack.Progress] 56% building 387/405 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/tip/tip.scss - [webpack.Progress] 56% building 387/406 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseGetTag.js - [webpack.Progress] 56% building 387/407 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/section-name/section-name.scss - [webpack.Progress] 56% building 388/407 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseGetTag.js - [webpack.Progress] 56% building 388/408 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/section-name/section-name.scss - [webpack.Progress] 56% building 388/409 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/title/title.scss - [webpack.Progress] 56% building 389/409 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/section-name/section-name.scss - [webpack.Progress] 56% building 389/410 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/title/title.scss - [webpack.Progress] 56% building 389/411 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isObjectLike.js - [webpack.Progress] 56% building 389/412 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getPrototype.js - [webpack.Progress] 56% building 389/413 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/not-a-regexp.js - [webpack.Progress] 56% building 389/414 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-hash/browser.js - [webpack.Progress] 56% building 389/415 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-rsa/index.js - [webpack.Progress] 56% building 390/415 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-rsa/index.js - [webpack.Progress] 56% building 391/415 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-rsa/index.js - [webpack.Progress] 57% building 392/415 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-rsa/index.js - [webpack.Progress] 57% building 393/415 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-rsa/index.js - [webpack.Progress] 57% building 393/416 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.ends-with.js - [webpack.Progress] 57% building 393/417 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/prop-types/lib/ReactPropTypesSecret.js - [webpack.Progress] 57% building 393/418 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/ListItem.js - [webpack.Progress] 57% building 394/418 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/ListItem.js - [webpack.Progress] 57% building 395/418 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/ListItem.js - [webpack.Progress] 57% building 396/418 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/ListItem.js - [webpack.Progress] 57% building 397/418 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/ListItem.js - [webpack.Progress] 57% building 397/419 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arrayReduce.js - [webpack.Progress] 57% building 397/420 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_createCaseFirst.js - [webpack.Progress] 57% building 397/421 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getNative.js - [webpack.Progress] 57% building 397/422 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/words.js - [webpack.Progress] 57% building 398/422 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/words.js - [webpack.Progress] 57% building 398/423 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseGet.js - [webpack.Progress] 57% building 399/423 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseGet.js - [webpack.Progress] 57% building 400/423 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseGet.js - [webpack.Progress] 57% building 400/424 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/helpers.js - [webpack.Progress] 57% building 400/425 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/utils.js - [webpack.Progress] 57% building 400/426 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/component-description-map.js - [webpack.Progress] 57% building 400/427 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseFlatten.js - [webpack.Progress] 57% building 400/428 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/helpers/bem-helper.js - [webpack.Progress] 57% building 400/429 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsMatch.js - [webpack.Progress] 58% building 401/429 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsMatch.js - [webpack.Progress] 58% building 401/430 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/to-absolute-index.js - [webpack.Progress] 58% building 401/431 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_createBaseFor.js - [webpack.Progress] 58% building 401/432 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/node_modules/bn.js/lib/bn.js - [webpack.Progress] 58% building 401/433 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arrayLikeKeys.js - [webpack.Progress] 58% building 401/434 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isArrayLike.js - [webpack.Progress] 58% building 401/435 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/index.js - [webpack.Progress] 58% building 401/436 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseProperty.js - [webpack.Progress] 58% building 402/436 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseProperty.js - [webpack.Progress] 58% building 403/436 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseProperty.js - [webpack.Progress] 58% building 404/436 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseProperty.js - [webpack.Progress] 58% building 405/436 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseProperty.js - [webpack.Progress] 58% building 405/437 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsEqual.js - [webpack.Progress] 58% building 405/438 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ZoomContext.js - [webpack.Progress] 58% building 405/439 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/Toolbar.js - [webpack.Progress] 58% building 406/439 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/Toolbar.js - [webpack.Progress] 58% building 406/440 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/BlockBackgroundStyles.js - [webpack.Progress] 58% building 406/441 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseSetToString.js - [webpack.Progress] 58% building 406/442 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_shortOut.js - [webpack.Progress] 58% building 406/443 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/EmptyBlock.js - [webpack.Progress] 58% building 406/444 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_apply.js - [webpack.Progress] 58% building 407/444 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_apply.js - [webpack.Progress] 58% building 408/444 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_apply.js - [webpack.Progress] 59% building 409/444 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_apply.js - [webpack.Progress] 59% building 409/445 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseHasIn.js - [webpack.Progress] 59% building 409/446 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hasPath.js - [webpack.Progress] 59% building 409/447 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/typography/shared.js - [webpack.Progress] 59% building 409/448 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/typography/link/link.js - [webpack.Progress] 59% building 409/449 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/AttentionBox.jsx - [webpack.Progress] 59% building 409/450 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/Zoom/browserSupportsCssZoom.js - [webpack.Progress] 59% building 409/451 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/types.js - [webpack.Progress] 59% building 409/452 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/inspectValue.js - [webpack.Progress] 59% building 409/453 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.jsx - [webpack.Progress] 59% building 410/453 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.jsx - [webpack.Progress] 59% building 411/453 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.jsx - [webpack.Progress] 59% building 411/454 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/ActionBar/ActionBar.js - [webpack.Progress] 59% building 411/455 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/syntaxhighlighter.js - [webpack.Progress] 59% building 411/456 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/lazy-syntaxhighlighter.js - [webpack.Progress] 59% building 412/456 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/lazy-syntaxhighlighter.js - [webpack.Progress] 59% building 413/456 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/lazy-syntaxhighlighter.js - [webpack.Progress] 59% building 414/456 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/lazy-syntaxhighlighter.js - [webpack.Progress] 59% building 415/456 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/lazy-syntaxhighlighter.js - [webpack.Progress] 59% building 416/456 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/lazy-syntaxhighlighter.js - [webpack.Progress] 60% building 417/456 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/lazy-syntaxhighlighter.js - [webpack.Progress] 60% building 417/457 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/escodegen.js - [webpack.Progress] 60% building 417/458 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/bn.js/lib/bn.js - [webpack.Progress] 60% building 418/458 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/bn.js/lib/bn.js - [webpack.Progress] 60% building 418/459 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 60% building 419/459 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 60% building 420/459 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 60% building 421/459 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 60% building 422/459 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 60% building 423/459 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 60% building 423/460 modules 37 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/public-encrypt/node_modules/bn.js/lib buffer - [webpack.Progress] 60% building 424/460 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 61% building 425/460 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 61% building 426/460 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 61% building 427/460 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 61% building 428/460 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 61% building 429/460 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 61% building 430/460 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 61% building 431/460 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 61% building 432/460 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 61% building 433/460 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 62% building 434/460 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/asn1.js - [webpack.Progress] 62% building 434/461 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/utils.js - [webpack.Progress] 62% building 434/462 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/ensure.js - [webpack.Progress] 62% building 434/463 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/convert.js - [webpack.Progress] 62% building 434/464 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/create.js - [webpack.Progress] 62% building 434/465 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/global.js - [webpack.Progress] 62% building 435/465 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/global.js - [webpack.Progress] 62% building 436/465 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/global.js - [webpack.Progress] 62% building 437/465 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/global.js - [webpack.Progress] 62% building 438/465 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/global.js - [webpack.Progress] 62% building 439/465 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/global.js - [webpack.Progress] 62% building 439/466 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/html-tags/index.js - [webpack.Progress] 62% building 440/466 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/html-tags/index.js - [webpack.Progress] 62% building 441/466 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/html-tags/index.js - [webpack.Progress] 62% building 441/467 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/base.js - [webpack.Progress] 62% building 441/468 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/types.js - [webpack.Progress] 62% building 441/469 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 63% building 442/469 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 63% building 443/469 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 63% building 444/469 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 63% building 445/469 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 63% building 446/469 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 63% building 446/470 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_Symbol.js - [webpack.Progress] 63% building 446/471 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_objectToString.js - [webpack.Progress] 63% building 446/472 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getRawTag.js - [webpack.Progress] 63% building 446/473 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_overArg.js - [webpack.Progress] 63% building 446/474 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/index.js - [webpack.Progress] 63% building 447/474 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/index.js - [webpack.Progress] 63% building 448/474 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/index.js - [webpack.Progress] 63% building 448/475 modules 27 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/bn.js/lib buffer - [webpack.Progress] 63% building 449/475 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/index.js - [webpack.Progress] 63% building 449/476 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/index.js - [webpack.Progress] 64% building 450/476 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/index.js - [webpack.Progress] 64% building 451/476 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/index.js - [webpack.Progress] 64% building 452/476 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/index.js - [webpack.Progress] 64% building 453/476 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/index.js - [webpack.Progress] 64% building 454/476 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/index.js - [webpack.Progress] 64% building 455/476 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/index.js - [webpack.Progress] 64% building 455/477 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_castSlice.js - [webpack.Progress] 64% building 456/477 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_castSlice.js - [webpack.Progress] 64% building 456/478 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsNative.js - [webpack.Progress] 64% building 456/479 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_asciiWords.js - [webpack.Progress] 64% building 456/480 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_castPath.js - [webpack.Progress] 64% building 457/480 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_castPath.js - [webpack.Progress] 64% building 458/480 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_castPath.js - [webpack.Progress] 65% building 459/480 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_castPath.js - [webpack.Progress] 65% building 460/480 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_castPath.js - [webpack.Progress] 65% building 460/481 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_toKey.js - [webpack.Progress] 65% building 460/482 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arrayPush.js - [webpack.Progress] 65% building 460/483 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/package.json - [webpack.Progress] 65% building 461/483 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arrayPush.js - [webpack.Progress] 65% building 461/484 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_Stack.js - [webpack.Progress] 65% building 461/485 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.number.is-safe-integer.js - [webpack.Progress] 65% building 461/486 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/extends.js - [webpack.Progress] 65% building 461/487 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js - [webpack.Progress] 65% building 461/488 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js - [webpack.Progress] 65% building 461/489 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js - [webpack.Progress] 65% building 462/489 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js - [webpack.Progress] 65% building 462/490 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isFlattenable.js - [webpack.Progress] 65% building 463/490 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isFlattenable.js - [webpack.Progress] 65% building 464/490 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isFlattenable.js - [webpack.Progress] 65% building 464/491 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseTimes.js - [webpack.Progress] 65% building 464/492 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isFunction.js - [webpack.Progress] 65% building 464/493 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isLength.js - [webpack.Progress] 65% building 464/494 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isIndex.js - [webpack.Progress] 65% building 464/495 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isTypedArray.js - [webpack.Progress] 65% building 465/495 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isTypedArray.js - [webpack.Progress] 65% building 466/495 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isTypedArray.js - [webpack.Progress] 65% building 466/496 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsEqualDeep.js - [webpack.Progress] 65% building 466/497 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isBuffer.js - [webpack.Progress] 65% building 466/498 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isArguments.js - [webpack.Progress] 66% building 467/498 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isArguments.js - [webpack.Progress] 66% building 467/499 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_unicodeWords.js - [webpack.Progress] 66% building 467/500 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/constant.js - [webpack.Progress] 65% building 467/501 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/toString.js - [webpack.Progress] 65% building 467/502 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hasUnicodeWord.js - [webpack.Progress] 65% building 467/503 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getValue.js - [webpack.Progress] 65% building 468/503 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getValue.js - [webpack.Progress] 65% building 468/504 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/types.js - [webpack.Progress] 65% building 469/504 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/types.js - [webpack.Progress] 65% building 470/504 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/types.js - [webpack.Progress] 65% building 470/505 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/html-tags/html-tags.json - [webpack.Progress] 65% building 470/506 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/acornParser.js - [webpack.Progress] 65% building 471/506 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/acornParser.js - [webpack.Progress] 65% building 472/506 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/inspection/acornParser.js - [webpack.Progress] 65% building 472/507 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/formatter.js - [webpack.Progress] 65% building 473/507 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/formatter.js - [webpack.Progress] 66% building 474/507 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/formatter.js - [webpack.Progress] 66% building 475/507 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/formatter.js - [webpack.Progress] 66% building 476/507 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/formatter.js - [webpack.Progress] 66% building 476/508 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 66% building 477/508 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/syntaxhighlighter/formatter.js - [webpack.Progress] 66% building 477/509 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 66% building 478/509 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 66% building 479/509 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 66% building 480/509 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 66% building 481/509 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 66% building 482/509 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 66% building 483/509 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 67% building 484/509 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 67% building 485/509 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 67% building 486/509 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 67% building 487/509 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 67% building 488/509 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 67% building 489/509 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 67% building 490/509 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 67% building 491/509 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 67% building 492/509 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 68% building 493/509 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 68% building 494/509 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 68% building 495/509 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 68% building 496/509 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 68% building 497/509 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule.scss - [webpack.Progress] 68% building 497/510 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/certificate.js - [webpack.Progress] 68% building 498/510 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/certificate.js - [webpack.Progress] 68% building 499/510 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/certificate.js - [webpack.Progress] 68% building 499/511 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 68% building 500/511 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 68% building 501/511 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 68% building 502/511 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 68% building 502/512 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/animation.js - [webpack.Progress] 68% building 502/513 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js - [webpack.Progress] 68% building 502/514 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js - [webpack.Progress] 68% building 502/515 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_root.js - [webpack.Progress] 68% building 502/516 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/construct.js - [webpack.Progress] 68% building 502/517 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js - [webpack.Progress] 68% building 502/518 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/types.js - [webpack.Progress] 68% building 502/519 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/NoControlsWarning.js - [webpack.Progress] 67% building 502/520 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/TabbedArgsTable.js - [webpack.Progress] 67% building 502/521 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/helpers/backwardCompatibilityForProperties.js - [webpack.Progress] 67% building 502/522 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/Options.js - [webpack.Progress] 67% building 503/522 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/Options.js - [webpack.Progress] 67% building 503/523 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgsTable.js - [webpack.Progress] 67% building 503/524 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/themes/dark.js - [webpack.Progress] 67% building 503/525 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/themes/light.js - [webpack.Progress] 67% building 503/526 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/modules/syntax.js - [webpack.Progress] 67% building 504/526 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/theming/dist/esm/modules/syntax.js - [webpack.Progress] 67% building 504/527 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/toast-discription.jsx - [webpack.Progress] 67% building 504/528 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/overlayscrollbars/js/OverlayScrollbars.js - [webpack.Progress] 67% building 504/529 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/alert-banner-description.jsx - [webpack.Progress] 67% building 504/530 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/attention-box-description.jsx - [webpack.Progress] 67% building 505/530 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/attention-box-description.jsx - [webpack.Progress] 67% building 505/531 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseSlice.js - [webpack.Progress] 67% building 506/531 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseSlice.js - [webpack.Progress] 67% building 506/532 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_toSource.js - [webpack.Progress] 66% building 506/533 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isObject.js - [webpack.Progress] 66% building 506/534 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stringToPath.js - [webpack.Progress] 66% building 507/534 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stringToPath.js - [webpack.Progress] 66% building 507/535 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isSymbol.js - [webpack.Progress] 66% building 507/536 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isKey.js - [webpack.Progress] 66% building 507/537 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/AttentionBox.scss - [webpack.Progress] 66% building 508/537 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isKey.js - [webpack.Progress] 66% building 508/538 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/AttentionBox.scss - [webpack.Progress] 66% building 508/539 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/base64-js/index.js - [webpack.Progress] 66% building 508/540 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_ListCache.js - [webpack.Progress] 66% building 509/540 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_ListCache.js - [webpack.Progress] 66% building 509/541 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stackSet.js - [webpack.Progress] 66% building 510/541 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stackSet.js - [webpack.Progress] 66% building 511/541 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stackSet.js - [webpack.Progress] 66% building 511/542 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stackHas.js - [webpack.Progress] 66% building 511/543 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-integer.js - [webpack.Progress] 66% building 512/543 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-integer.js - [webpack.Progress] 66% building 513/543 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-integer.js - [webpack.Progress] 66% building 514/543 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-integer.js - [webpack.Progress] 66% building 514/544 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stackGet.js - [webpack.Progress] 66% building 514/545 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stackDelete.js - [webpack.Progress] 66% building 514/546 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsTypedArray.js - [webpack.Progress] 66% building 514/547 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getTag.js - [webpack.Progress] 66% building 514/548 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsArguments.js - [webpack.Progress] 66% building 515/548 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsArguments.js - [webpack.Progress] 66% building 515/549 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/stubFalse.js - [webpack.Progress] 66% building 515/550 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_equalObjects.js - [webpack.Progress] 66% building 515/551 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_equalByTag.js - [webpack.Progress] 65% building 515/552 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseToString.js - [webpack.Progress] 66% building 516/552 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseToString.js - [webpack.Progress] 66% building 517/552 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseToString.js - [webpack.Progress] 66% building 517/553 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_equalArrays.js - [webpack.Progress] 66% building 518/553 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_equalArrays.js - [webpack.Progress] 66% building 518/554 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/isarray/index.js - [webpack.Progress] 65% building 518/555 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ieee754/index.js - [webpack.Progress] 65% building 518/556 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_nodeUtil.js - [webpack.Progress] 65% building 518/557 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseUnary.js - [webpack.Progress] 65% building 519/557 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseUnary.js - [webpack.Progress] 66% building 520/557 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseUnary.js - [webpack.Progress] 66% building 521/557 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseUnary.js - [webpack.Progress] 66% building 522/557 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseUnary.js - [webpack.Progress] 66% building 522/558 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stackClear.js - [webpack.Progress] 66% building 522/559 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/inherits/inherits_browser.js - [webpack.Progress] 66% building 523/559 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/inherits/inherits_browser.js - [webpack.Progress] 66% building 524/559 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/inherits/inherits_browser.js - [webpack.Progress] 66% building 524/560 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/browser.js - [webpack.Progress] 66% building 525/560 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/browser.js - [webpack.Progress] 66% building 526/560 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/browser.js - [webpack.Progress] 66% building 526/561 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/styled/dist/styled.browser.esm.js - [webpack.Progress] 66% building 527/561 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/styled/dist/styled.browser.esm.js - [webpack.Progress] 66% building 527/562 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/is-prop-valid/dist/is-prop-valid.browser.esm.js - [webpack.Progress] 66% building 528/562 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/is-prop-valid/dist/is-prop-valid.browser.esm.js - [webpack.Progress] 66% building 528/563 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js - [webpack.Progress] 66% building 528/564 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/cipher-base/index.js - [webpack.Progress] 66% building 528/565 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/core/dist/core.browser.esm.js - [webpack.Progress] 65% building 528/566 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 529/566 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 530/566 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 531/566 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 532/566 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 533/566 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 534/566 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 535/566 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 536/566 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 537/566 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/emotion-theming/dist/emotion-theming.browser.esm.js - [webpack.Progress] 66% building 537/567 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isMasked.js - [webpack.Progress] 66% building 538/567 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isMasked.js - [webpack.Progress] 67% building 539/567 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isMasked.js - [webpack.Progress] 67% building 540/567 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isMasked.js - [webpack.Progress] 67% building 540/568 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/AttentionBoxConstants.js - [webpack.Progress] 67% building 541/568 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/AttentionBoxConstants.js - [webpack.Progress] 67% building 541/569 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/md5.js/index.js - [webpack.Progress] 67% building 542/569 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/md5.js/index.js - [webpack.Progress] 67% building 542/570 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 67% building 543/570 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 67% building 544/570 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 67% building 545/570 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 67% building 546/570 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 67% building 547/570 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 67% building 548/570 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 67% building 549/570 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 67% building 550/570 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 68% building 551/570 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 68% building 552/570 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-textarea-autosize/dist/react-textarea-autosize.browser.esm.js - [webpack.Progress] 68% building 552/571 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/index.js - [webpack.Progress] 68% building 553/571 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/index.js - [webpack.Progress] 68% building 554/571 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/index.js - [webpack.Progress] 68% building 554/572 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Alert.js - [webpack.Progress] 68% building 554/573 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/CloseSmall.js - [webpack.Progress] 68% building 555/573 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/CloseSmall.js - [webpack.Progress] 68% building 556/573 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/CloseSmall.js - [webpack.Progress] 68% building 556/574 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_freeGlobal.js - [webpack.Progress] 68% building 557/574 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_freeGlobal.js - [webpack.Progress] 68% building 558/574 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_freeGlobal.js - [webpack.Progress] 68% building 559/574 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_freeGlobal.js - [webpack.Progress] 68% building 560/574 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_freeGlobal.js - [webpack.Progress] 68% building 561/574 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_freeGlobal.js - [webpack.Progress] 68% building 561/575 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/index.js - [webpack.Progress] 68% building 561/576 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/prism-light.js - [webpack.Progress] 68% building 561/577 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/typescript.js - [webpack.Progress] 68% building 561/578 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/tsx.js - [webpack.Progress] 68% building 561/579 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/yaml.js - [webpack.Progress] 68% building 561/580 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markdown.js - [webpack.Progress] 67% building 561/581 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/graphql.js - [webpack.Progress] 67% building 561/582 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/markup.js - [webpack.Progress] 67% building 561/583 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/js-extras.js - [webpack.Progress] 67% building 561/584 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/json.js - [webpack.Progress] 67% building 561/585 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/css.js - [webpack.Progress] 67% building 561/586 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ripemd160/index.js - [webpack.Progress] 67% building 562/586 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ripemd160/index.js - [webpack.Progress] 67% building 562/587 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/Radio.js - [webpack.Progress] 67% building 562/588 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/Select.js - [webpack.Progress] 67% building 562/589 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icon.jsx - [webpack.Progress] 67% building 563/589 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icon.jsx - [webpack.Progress] 67% building 564/589 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icon.jsx - [webpack.Progress] 67% building 564/590 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/typography/DocumentFormatting.js - [webpack.Progress] 67% building 564/591 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/SectionRow.js - [webpack.Progress] 67% building 564/592 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_memoizeCapped.js - [webpack.Progress] 67% building 564/593 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgRow.js - [webpack.Progress] 67% building 565/593 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgRow.js - [webpack.Progress] 67% building 566/593 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgRow.js - [webpack.Progress] 67% building 567/593 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgRow.js - [webpack.Progress] 67% building 568/593 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgRow.js - [webpack.Progress] 67% building 568/594 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_listCacheClear.js - [webpack.Progress] 67% building 568/595 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_MapCache.js - [webpack.Progress] 67% building 568/596 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_Map.js - [webpack.Progress] 67% building 569/596 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_Map.js - [webpack.Progress] 67% building 569/597 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_listCacheSet.js - [webpack.Progress] 67% building 569/598 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_listCacheHas.js - [webpack.Progress] 66% building 569/599 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_listCacheDelete.js - [webpack.Progress] 66% building 569/600 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_listCacheGet.js - [webpack.Progress] 66% building 569/601 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_DataView.js - [webpack.Progress] 66% building 569/602 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_Set.js - [webpack.Progress] 66% building 569/603 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_WeakMap.js - [webpack.Progress] 66% building 569/604 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_Promise.js - [webpack.Progress] 66% building 570/604 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_Promise.js - [webpack.Progress] 66% building 570/605 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getAllKeys.js - [webpack.Progress] 66% building 570/606 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_setToArray.js - [webpack.Progress] 66% building 570/607 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arrayMap.js - [webpack.Progress] 66% building 570/608 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_SetCache.js - [webpack.Progress] 66% building 571/608 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_SetCache.js - [webpack.Progress] 66% building 572/608 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_SetCache.js - [webpack.Progress] 66% building 573/608 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_SetCache.js - [webpack.Progress] 66% building 574/608 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_SetCache.js - [webpack.Progress] 66% building 575/608 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_SetCache.js - [webpack.Progress] 66% building 576/608 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_SetCache.js - [webpack.Progress] 66% building 577/608 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_SetCache.js - [webpack.Progress] 67% building 578/608 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_SetCache.js - [webpack.Progress] 66% building 578/609 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/component-rule/component-rule-constants.js - [webpack.Progress] 66% building 578/610 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Check.js - [webpack.Progress] 66% building 579/610 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Check.js - [webpack.Progress] 67% building 580/610 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Check.js - [webpack.Progress] 67% building 581/610 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Check.js - [webpack.Progress] 67% building 581/611 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1.js - [webpack.Progress] 67% building 582/611 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1.js - [webpack.Progress] 67% building 583/611 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1.js - [webpack.Progress] 67% building 583/612 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cacheHas.js - [webpack.Progress] 67% building 583/613 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arraySome.js - [webpack.Progress] 66% building 583/614 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_mapToArray.js - [webpack.Progress] 66% building 583/615 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/eq.js - [webpack.Progress] 66% building 583/616 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_Uint8Array.js - [webpack.Progress] 66% building 583/617 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/estraverse/estraverse.js - [webpack.Progress] 66% building 583/618 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/source-map.js - [webpack.Progress] 66% building 584/618 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/source-map.js - [webpack.Progress] 66% building 585/618 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/source-map.js - [webpack.Progress] 66% building 585/619 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/Checkbox.js - [webpack.Progress] 66% building 586/619 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/Checkbox.js - [webpack.Progress] 66% building 586/620 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/dropdown-description.jsx - [webpack.Progress] 66% building 586/621 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/toggle-description.jsx - [webpack.Progress] 66% building 586/622 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/tooltip-description.jsx - [webpack.Progress] 66% building 587/622 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/tooltip-description.jsx - [webpack.Progress] 66% building 587/623 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/chips-description.jsx - [webpack.Progress] 66% building 588/623 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/chips-description.jsx - [webpack.Progress] 66% building 589/623 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/chips-description.jsx - [webpack.Progress] 66% building 590/623 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/chips-description.jsx - [webpack.Progress] 66% building 591/623 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/chips-description.jsx - [webpack.Progress] 66% building 591/624 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/counter-description.jsx - [webpack.Progress] 66% building 591/625 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/radio-button-description.jsx - [webpack.Progress] 66% building 591/626 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/label-description.jsx - [webpack.Progress] 66% building 591/627 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/checkbox-description.jsx - [webpack.Progress] 66% building 592/627 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/checkbox-description.jsx - [webpack.Progress] 66% building 592/628 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_coreJsData.js - [webpack.Progress] 66% building 592/629 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/button-group-description.jsx - [webpack.Progress] 66% building 593/629 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/button-group-description.jsx - [webpack.Progress] 66% building 594/629 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/button-group-description.jsx - [webpack.Progress] 66% building 595/629 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/button-group-description.jsx - [webpack.Progress] 66% building 595/630 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/index.js - [webpack.Progress] 66% building 596/630 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/index.js - [webpack.Progress] 66% building 597/630 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/index.js - [webpack.Progress] 66% building 597/631 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/async.js - [webpack.Progress] 66% building 597/632 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 66% building 598/632 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 66% building 599/632 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 66% building 600/632 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 601/632 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 602/632 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 603/632 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 604/632 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 605/632 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 606/632 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 607/632 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 608/632 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 609/632 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 67% building 610/632 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 68% building 611/632 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 68% building 612/632 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 68% building 613/632 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 68% building 614/632 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/sync-browser.js - [webpack.Progress] 68% building 614/633 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/start.js - [webpack.Progress] 68% building 615/633 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/start.js - [webpack.Progress] 68% building 615/634 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/Toast.jsx - [webpack.Progress] 68% building 615/635 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/sha.js - [webpack.Progress] 68% building 615/636 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/highlight.js - [webpack.Progress] 67% building 615/637 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBanner.jsx - [webpack.Progress] 68% building 616/637 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBanner.jsx - [webpack.Progress] 67% building 616/638 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/options/helpers.js - [webpack.Progress] 67% building 616/639 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/defineProperty.js - [webpack.Progress] 67% building 616/640 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/extends.js - [webpack.Progress] 67% building 617/640 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/extends.js - [webpack.Progress] 67% building 618/640 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/extends.js - [webpack.Progress] 67% building 618/641 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-component/related-component.jsx - [webpack.Progress] 67% building 618/642 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerText/AlertBannerText.jsx - [webpack.Progress] 67% building 619/642 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerText/AlertBannerText.jsx - [webpack.Progress] 67% building 620/642 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerText/AlertBannerText.jsx - [webpack.Progress] 67% building 620/643 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/sha512.js - [webpack.Progress] 67% building 620/644 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/sha384.js - [webpack.Progress] 67% building 620/645 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/sha256.js - [webpack.Progress] 67% building 620/646 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/sha224.js - [webpack.Progress] 67% building 620/647 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/sha1.js - [webpack.Progress] 67% building 620/648 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/pickBy.js - [webpack.Progress] 67% building 620/649 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/memoize.js - [webpack.Progress] 67% building 620/650 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgControl.js - [webpack.Progress] 67% building 620/651 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icon.scss - [webpack.Progress] 67% building 621/651 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgControl.js - [webpack.Progress] 67% building 621/652 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icon.scss - [webpack.Progress] 67% building 622/652 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icon.scss - [webpack.Progress] 67% building 622/653 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgValue.js - [webpack.Progress] 67% building 622/654 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-walk/dist/walk.mjs - [webpack.Progress] 66% building 622/655 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/tsx.js - [webpack.Progress] 66% building 622/656 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/typescript.js - [webpack.Progress] 66% building 622/657 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/markdown.js - [webpack.Progress] 66% building 622/658 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/js-extras.js - [webpack.Progress] 66% building 622/659 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/yaml.js - [webpack.Progress] 66% building 622/660 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/css.js - [webpack.Progress] 66% building 622/661 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/graphql.js - [webpack.Progress] 66% building 622/662 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/json.js - [webpack.Progress] 66% building 622/663 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/markup.js - [webpack.Progress] 66% building 622/664 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/blocks/ArgsTable/ArgJsDoc.js - [webpack.Progress] 66% building 622/665 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_mapCacheClear.js - [webpack.Progress] 66% building 622/666 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_mapCacheSet.js - [webpack.Progress] 66% building 623/666 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_mapCacheSet.js - [webpack.Progress] 66% building 624/666 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_mapCacheSet.js - [webpack.Progress] 66% building 624/667 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_assocIndexOf.js - [webpack.Progress] 66% building 624/668 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn/dist/acorn.mjs - [webpack.Progress] 65% building 624/669 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_mapCacheHas.js - [webpack.Progress] 65% building 624/670 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_mapCacheGet.js - [webpack.Progress] 65% building 624/671 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_mapCacheDelete.js - [webpack.Progress] 65% building 625/671 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_mapCacheDelete.js - [webpack.Progress] 65% building 625/672 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseGetAllKeys.js - [webpack.Progress] 65% building 625/673 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getSymbols.js - [webpack.Progress] 65% building 625/674 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_setCacheHas.js - [webpack.Progress] 65% building 626/674 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_setCacheHas.js - [webpack.Progress] 65% building 626/675 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.number.constructor.js - [webpack.Progress] 65% building 626/676 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_setCacheAdd.js - [webpack.Progress] 65% building 627/676 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_setCacheAdd.js - [webpack.Progress] 65% building 628/676 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_setCacheAdd.js - [webpack.Progress] 65% building 629/676 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_setCacheAdd.js - [webpack.Progress] 65% building 629/677 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/core.js - [webpack.Progress] 65% building 630/677 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/core.js - [webpack.Progress] 65% building 631/677 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/core.js - [webpack.Progress] 66% building 632/677 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/core.js - [webpack.Progress] 65% building 632/678 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 633/678 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 634/678 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 635/678 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 636/678 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 637/678 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 638/678 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 639/678 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 640/678 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 641/678 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 642/678 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 643/678 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 644/678 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 67% building 645/678 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/index.js - [webpack.Progress] 66% building 645/679 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/api.js - [webpack.Progress] 67% building 646/679 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/api.js - [webpack.Progress] 67% building 646/680 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 647/680 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 648/680 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 649/680 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 650/680 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 651/680 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 652/680 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 653/680 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 654/680 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 655/680 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useMergeRefs.js - [webpack.Progress] 67% building 655/681 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/source-map-generator.js - [webpack.Progress] 67% building 655/682 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/source-node.js - [webpack.Progress] 67% building 655/683 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/source-map-consumer.js - [webpack.Progress] 67% building 656/683 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/source-map-consumer.js - [webpack.Progress] 67% building 657/683 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/source-map-consumer.js - [webpack.Progress] 67% building 658/683 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/source-map-consumer.js - [webpack.Progress] 67% building 658/684 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js - [webpack.Progress] 67% building 658/685 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/__stories__/ToastLineWrapper.jsx - [webpack.Progress] 67% building 659/685 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/__stories__/ToastLineWrapper.jsx - [webpack.Progress] 67% building 660/685 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/__stories__/ToastLineWrapper.jsx - [webpack.Progress] 67% building 661/685 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/__stories__/ToastLineWrapper.jsx - [webpack.Progress] 67% building 662/685 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/__stories__/ToastLineWrapper.jsx - [webpack.Progress] 67% building 662/686 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/hooks/useIconProps.js - [webpack.Progress] 67% building 663/686 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/hooks/useIconProps.js - [webpack.Progress] 68% building 664/686 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/hooks/useIconProps.js - [webpack.Progress] 68% building 665/686 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/hooks/useIconProps.js - [webpack.Progress] 68% building 665/687 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-hash/md5.js - [webpack.Progress] 68% building 666/687 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-hash/md5.js - [webpack.Progress] 68% building 666/688 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/to-buffer.js - [webpack.Progress] 68% building 667/688 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/to-buffer.js - [webpack.Progress] 68% building 667/689 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/default-encoding.js - [webpack.Progress] 68% building 668/689 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/default-encoding.js - [webpack.Progress] 68% building 669/689 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/default-encoding.js - [webpack.Progress] 68% building 670/689 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/default-encoding.js - [webpack.Progress] 68% building 671/689 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/default-encoding.js - [webpack.Progress] 68% building 671/690 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/pbkdf2/lib/precondition.js - [webpack.Progress] 68% building 671/691 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/CustomSvgIcon.jsx - [webpack.Progress] 68% building 672/691 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/CustomSvgIcon.jsx - [webpack.Progress] 68% building 672/692 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/FontIcon/FontIcon.jsx - [webpack.Progress] 68% building 672/693 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/jsx.js - [webpack.Progress] 68% building 672/694 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/executeLoadable.js - [webpack.Progress] 68% building 673/694 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/executeLoadable.js - [webpack.Progress] 68% building 674/694 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/dist/esm/preview/executeLoadable.js - [webpack.Progress] 68% building 674/695 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/core/dist/emotion-element-57a3a7a3.browser.esm.js - [webpack.Progress] 68% building 675/695 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/core/dist/emotion-element-57a3a7a3.browser.esm.js - [webpack.Progress] 68% building 676/695 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/core/dist/emotion-element-57a3a7a3.browser.esm.js - [webpack.Progress] 68% building 677/695 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/core/dist/emotion-element-57a3a7a3.browser.esm.js - [webpack.Progress] 68% building 678/695 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/core/dist/emotion-element-57a3a7a3.browser.esm.js - [webpack.Progress] 68% building 678/696 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/objectWithoutProperties.js - [webpack.Progress] 68% building 678/697 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/create-element.js - [webpack.Progress] 68% building 678/698 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/checkForListedLanguage.js - [webpack.Progress] 68% building 678/699 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/objectSpread.js - [webpack.Progress] 68% building 678/700 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/hash.js - [webpack.Progress] 68% building 679/700 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/hash.js - [webpack.Progress] 68% building 680/700 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/hash.js - [webpack.Progress] 68% building 681/700 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/hash.js - [webpack.Progress] 68% building 682/700 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/hash.js - [webpack.Progress] 68% building 683/700 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/hash.js - [webpack.Progress] 68% building 684/700 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/sha.js/hash.js - [webpack.Progress] 68% building 684/701 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Checkbox/Checkbox.js - [webpack.Progress] 68% building 684/702 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getAllKeysIn.js - [webpack.Progress] 68% building 684/703 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-component/related-component.scss - [webpack.Progress] 68% building 685/703 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getAllKeysIn.js - [webpack.Progress] 68% building 685/704 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-component/related-component.scss - [webpack.Progress] 68% building 686/704 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-component/related-component.scss - [webpack.Progress] 68% building 686/705 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/IconConstants.js - [webpack.Progress] 68% building 687/705 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/IconConstants.js - [webpack.Progress] 68% building 687/706 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toggle/Toggle.jsx - [webpack.Progress] 68% building 687/707 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/Chips.jsx - [webpack.Progress] 68% building 687/708 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/Toast.scss - [webpack.Progress] 68% building 688/708 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/Chips.jsx - [webpack.Progress] 68% building 688/709 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/Toast.scss - [webpack.Progress] 68% building 689/709 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/Toast.scss - [webpack.Progress] 68% building 689/710 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/styled-base/dist/styled-base.browser.esm.js - [webpack.Progress] 68% building 689/711 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_Hash.js - [webpack.Progress] 68% building 689/712 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getMapData.js - [webpack.Progress] 67% building 689/713 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/RadioButton.jsx - [webpack.Progress] 67% building 689/714 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/Counter.jsx - [webpack.Progress] 67% building 689/715 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Label.jsx - [webpack.Progress] 67% building 690/715 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Label.jsx - [webpack.Progress] 67% building 690/716 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBanner.scss - [webpack.Progress] 67% building 691/716 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Label.jsx - [webpack.Progress] 67% building 691/717 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBanner.scss - [webpack.Progress] 67% building 691/718 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/memoize/dist/memoize.browser.esm.js - [webpack.Progress] 67% building 691/719 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroup.jsx - [webpack.Progress] 67% building 691/720 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/Dropdown.jsx - [webpack.Progress] 67% building 691/721 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerText/AlertBannerText.scss - [webpack.Progress] 67% building 692/721 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/Dropdown.jsx - [webpack.Progress] 67% building 692/722 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerText/AlertBannerText.scss - [webpack.Progress] 67% building 693/722 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerText/AlertBannerText.scss - [webpack.Progress] 67% building 693/723 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arrayFilter.js - [webpack.Progress] 67% building 693/724 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/stubArray.js - [webpack.Progress] 67% building 693/725 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim.js - [webpack.Progress] 67% building 694/725 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim.js - [webpack.Progress] 67% building 695/725 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim.js - [webpack.Progress] 67% building 696/725 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim.js - [webpack.Progress] 67% building 697/725 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim.js - [webpack.Progress] 67% building 697/726 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js - [webpack.Progress] 67% building 698/726 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js - [webpack.Progress] 67% building 698/727 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/weak-memoize/dist/weak-memoize.browser.esm.js - [webpack.Progress] 67% building 698/728 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.splice.js - [webpack.Progress] 67% building 698/729 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/descriptions/split-button-description.jsx - [webpack.Progress] 67% building 698/730 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/stream-browserify/index.js - [webpack.Progress] 67% building 699/730 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/stream-browserify/index.js - [webpack.Progress] 67% building 700/730 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/stream-browserify/index.js - [webpack.Progress] 67% building 700/731 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/use-composed-ref/dist/use-composed-ref.esm.js - [webpack.Progress] 67% building 700/732 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/use-latest/dist/use-latest.esm.js - [webpack.Progress] 67% building 700/733 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/index.js - [webpack.Progress] 67% building 700/734 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/TooltipLineWrapper.jsx - [webpack.Progress] 67% building 701/734 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/TooltipLineWrapper.jsx - [webpack.Progress] 67% building 701/735 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/ToastConstants.js - [webpack.Progress] 67% building 701/736 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/base64-vlq.js - [webpack.Progress] 67% building 701/737 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/util.js - [webpack.Progress] 66% building 701/738 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Info.js - [webpack.Progress] 66% building 701/739 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string_decoder/lib/string_decoder.js - [webpack.Progress] 66% building 702/739 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string_decoder/lib/string_decoder.js - [webpack.Progress] 67% building 703/739 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string_decoder/lib/string_decoder.js - [webpack.Progress] 67% building 704/739 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string_decoder/lib/string_decoder.js - [webpack.Progress] 67% building 704/740 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/quick-sort.js - [webpack.Progress] 67% building 704/741 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js - [webpack.Progress] 67% building 705/741 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js - [webpack.Progress] 67% building 705/742 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/mapping-list.js - [webpack.Progress] 66% building 705/743 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/binary-search.js - [webpack.Progress] 66% building 705/744 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/array-set.js - [webpack.Progress] 66% building 705/745 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 66% building 706/745 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 66% building 707/745 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 67% building 708/745 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 67% building 709/745 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 67% building 710/745 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 67% building 711/745 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 67% building 712/745 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 67% building 713/745 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 67% building 714/745 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/noop.js - [webpack.Progress] 67% building 714/746 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useIsOverflowing.js - [webpack.Progress] 67% building 715/746 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useIsOverflowing.js - [webpack.Progress] 67% building 716/746 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useIsOverflowing.js - [webpack.Progress] 67% building 717/746 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useIsOverflowing.js - [webpack.Progress] 67% building 717/747 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/xhtml.js - [webpack.Progress] 67% building 717/748 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/CustomSvgIcon.scss - [webpack.Progress] 67% building 718/748 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--7-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/acorn-jsx/xhtml.js - [webpack.Progress] 67% building 718/749 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/CustomSvgIcon.scss - [webpack.Progress] 67% building 718/750 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/ToastButton/ToastButton.jsx - [webpack.Progress] 67% building 719/750 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/ToastButton/ToastButton.jsx - [webpack.Progress] 67% building 719/751 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-is/index.js - [webpack.Progress] 67% building 719/752 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/inheritsLoose.js - [webpack.Progress] 67% building 720/752 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/inheritsLoose.js - [webpack.Progress] 67% building 721/752 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/inheritsLoose.js - [webpack.Progress] 67% building 722/752 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/inheritsLoose.js - [webpack.Progress] 67% building 722/753 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/Tooltip.jsx - [webpack.Progress] 67% building 723/753 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/Tooltip.jsx - [webpack.Progress] 67% building 724/753 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/Tooltip.jsx - [webpack.Progress] 67% building 724/754 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/FontIcon/FontIcon.scss - [webpack.Progress] 67% building 725/754 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/Tooltip.jsx - [webpack.Progress] 67% building 725/755 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/FontIcon/FontIcon.scss - [webpack.Progress] 67% building 726/755 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/FontIcon/FontIcon.scss - [webpack.Progress] 67% building 727/755 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/FontIcon/FontIcon.scss - [webpack.Progress] 67% building 728/755 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/FontIcon/FontIcon.scss - [webpack.Progress] 67% building 728/756 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/markdown-to-jsx/dist/index.module.js - [webpack.Progress] 67% building 729/756 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/markdown-to-jsx/dist/index.module.js - [webpack.Progress] 67% building 730/756 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/markdown-to-jsx/dist/index.module.js - [webpack.Progress] 68% building 731/756 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/markdown-to-jsx/dist/index.module.js - [webpack.Progress] 67% building 731/757 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/encoders/index.js - [webpack.Progress] 67% building 731/758 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/constants/index.js - [webpack.Progress] 67% building 731/759 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/decoders/index.js - [webpack.Progress] 67% building 732/759 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/decoders/index.js - [webpack.Progress] 67% building 732/760 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/base/index.js - [webpack.Progress] 67% building 732/761 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/keysIn.js - [webpack.Progress] 67% building 732/762 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getSymbolsIn.js - [webpack.Progress] 67% building 732/763 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useIconScreenReaderAccessProps.js - [webpack.Progress] 67% building 732/764 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/uniq.js - [webpack.Progress] 67% building 732/765 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.trim.js - [webpack.Progress] 67% building 732/766 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/constants/KeyCodes.js - [webpack.Progress] 67% building 732/767 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyEvent.js - [webpack.Progress] 67% building 733/767 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyEvent.js - [webpack.Progress] 67% building 734/767 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyEvent.js - [webpack.Progress] 67% building 735/767 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyEvent.js - [webpack.Progress] 67% building 736/767 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyEvent.js - [webpack.Progress] 67% building 737/767 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyEvent.js - [webpack.Progress] 67% building 737/768 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hashClear.js - [webpack.Progress] 67% building 737/769 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isKeyable.js - [webpack.Progress] 67% building 738/769 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isKeyable.js - [webpack.Progress] 67% building 738/770 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hashSet.js - [webpack.Progress] 67% building 738/771 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Checkbox/Checkbox.scss - [webpack.Progress] 67% building 739/771 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hashSet.js - [webpack.Progress] 67% building 739/772 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Checkbox/Checkbox.scss - [webpack.Progress] 67% building 740/772 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Checkbox/Checkbox.scss - [webpack.Progress] 67% building 741/772 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Checkbox/Checkbox.scss - [webpack.Progress] 67% building 741/773 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hashHas.js - [webpack.Progress] 67% building 741/774 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toggle/Toggle.scss - [webpack.Progress] 67% building 742/774 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hashHas.js - [webpack.Progress] 67% building 742/775 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toggle/Toggle.scss - [webpack.Progress] 67% building 742/776 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/diff/index.js - [webpack.Progress] 67% building 743/776 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/diff/index.js - [webpack.Progress] 67% building 743/777 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hashGet.js - [webpack.Progress] 67% building 744/777 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hashGet.js - [webpack.Progress] 67% building 744/778 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/whitespaces.js - [webpack.Progress] 67% building 745/778 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/whitespaces.js - [webpack.Progress] 67% building 745/779 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/RadioButton.scss - [webpack.Progress] 67% building 746/779 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/whitespaces.js - [webpack.Progress] 67% building 746/780 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/RadioButton.scss - [webpack.Progress] 67% building 746/781 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/css/dist/css.browser.esm.js - [webpack.Progress] 67% building 746/782 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/node_modules/bn.js/lib/bn.js - [webpack.Progress] 67% building 746/783 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/sheet/dist/sheet.browser.esm.js - [webpack.Progress] 67% building 746/784 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/serialize/dist/serialize.browser.esm.js - [webpack.Progress] 67% building 747/784 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/serialize/dist/serialize.browser.esm.js - [webpack.Progress] 67% building 747/785 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hashDelete.js - [webpack.Progress] 67% building 747/786 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/Chips.scss - [webpack.Progress] 67% building 748/786 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hashDelete.js - [webpack.Progress] 67% building 748/787 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/Chips.scss - [webpack.Progress] 67% building 749/787 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/Chips.scss - [webpack.Progress] 67% building 749/788 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Label.scss - [webpack.Progress] 67% building 750/788 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/Chips.scss - [webpack.Progress] 67% building 750/789 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Label.scss - [webpack.Progress] 66% building 750/790 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-property.js - [webpack.Progress] 66% building 750/791 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 66% building 751/791 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 66% building 751/792 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/Counter.scss - [webpack.Progress] 66% building 752/792 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 66% building 752/793 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/Counter.scss - [webpack.Progress] 66% building 753/793 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/Counter.scss - [webpack.Progress] 66% building 753/794 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroup.scss - [webpack.Progress] 66% building 754/794 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/Counter.scss - [webpack.Progress] 66% building 754/795 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroup.scss - [webpack.Progress] 66% building 755/795 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroup.scss - [webpack.Progress] 67% building 756/795 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroup.scss - [webpack.Progress] 67% building 757/795 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroup.scss - [webpack.Progress] 67% building 758/795 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroup.scss - [webpack.Progress] 67% building 759/795 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroup.scss - [webpack.Progress] 67% building 760/795 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroup.scss - [webpack.Progress] 67% building 760/796 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useEventListener.js - [webpack.Progress] 67% building 761/796 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useEventListener.js - [webpack.Progress] 67% building 762/796 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useEventListener.js - [webpack.Progress] 67% building 763/796 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useEventListener.js - [webpack.Progress] 67% building 763/797 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/events/events.js - [webpack.Progress] 67% building 763/798 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/passthrough.js - [webpack.Progress] 67% building 763/799 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/transform.js - [webpack.Progress] 67% building 763/800 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/duplex-browser.js - [webpack.Progress] 67% building 763/801 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/writable-browser.js - [webpack.Progress] 67% building 763/802 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/readable-browser.js - [webpack.Progress] 67% building 763/803 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/Dropdown.scss - [webpack.Progress] 67% building 764/803 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/readable-browser.js - [webpack.Progress] 67% building 764/804 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/Dropdown.scss - [webpack.Progress] 66% building 764/805 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/setPrototypeOf.js - [webpack.Progress] 66% building 764/806 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/base64.js - [webpack.Progress] 66% building 765/806 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/base64.js - [webpack.Progress] 67% building 766/806 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/base64.js - [webpack.Progress] 67% building 767/806 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escodegen/node_modules/source-map/lib/base64.js - [webpack.Progress] 67% building 767/807 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Remove.js - [webpack.Progress] 66% building 767/808 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useToggle.js - [webpack.Progress] 67% building 768/808 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useToggle.js - [webpack.Progress] 67% building 769/808 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useToggle.js - [webpack.Progress] 67% building 769/809 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/tooltip-story.scss - [webpack.Progress] 67% building 770/809 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useToggle.js - [webpack.Progress] 67% building 770/810 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/tooltip-story.scss - [webpack.Progress] 67% building 771/810 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/tooltip-story.scss - [webpack.Progress] 67% building 772/810 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/tooltip-story.scss - [webpack.Progress] 67% building 773/810 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/tooltip-story.scss - [webpack.Progress] 67% building 773/811 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Leg.js - [webpack.Progress] 67% building 774/811 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Leg.js - [webpack.Progress] 67% building 775/811 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Leg.js - [webpack.Progress] 67% building 775/812 modules 37 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/node_modules/bn.js/lib buffer - [webpack.Progress] 67% building 776/812 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Leg.js - [webpack.Progress] 67% building 777/812 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Leg.js - [webpack.Progress] 67% building 778/812 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/Leg.js - [webpack.Progress] 67% building 778/813 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-is/cjs/react-is.production.min.js - [webpack.Progress] 67% building 779/813 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-is/cjs/react-is.production.min.js - [webpack.Progress] 67% building 779/814 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isNil.js - [webpack.Progress] 67% building 779/815 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/LabelConstants.js - [webpack.Progress] 67% building 779/816 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/Button.jsx - [webpack.Progress] 67% building 780/816 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/Button.jsx - [webpack.Progress] 67% building 780/817 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerConstants.jsx - [webpack.Progress] 67% building 781/817 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerConstants.jsx - [webpack.Progress] 67% building 781/818 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/channel-postmessage/dist/esm/index.js - [webpack.Progress] 67% building 781/819 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/index.js - [webpack.Progress] 67% building 781/820 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toggle/ToggleText.jsx - [webpack.Progress] 67% building 781/821 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toggle/ToggleConstants.jsx - [webpack.Progress] 67% building 781/822 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/colors/colors-vars-map.js - [webpack.Progress] 66% building 781/823 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/utils/function-utils.js - [webpack.Progress] 66% building 781/824 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/services/themes.js - [webpack.Progress] 66% building 781/825 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonGroupConstants.js - [webpack.Progress] 66% building 781/826 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/detailed/index.js - [webpack.Progress] 66% building 781/827 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/updated/index.js - [webpack.Progress] 66% building 781/828 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/deleted/index.js - [webpack.Progress] 66% building 781/829 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/usePrevious.js - [webpack.Progress] 66% building 782/829 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/usePrevious.js - [webpack.Progress] 66% building 782/830 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/ToastLink/ToastLink.jsx - [webpack.Progress] 66% building 782/831 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/added/index.js - [webpack.Progress] 66% building 783/831 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/added/index.js - [webpack.Progress] 66% building 784/831 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/added/index.js - [webpack.Progress] 66% building 785/831 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/added/index.js - [webpack.Progress] 66% building 786/831 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/added/index.js - [webpack.Progress] 66% building 787/831 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/added/index.js - [webpack.Progress] 66% building 788/831 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/added/index.js - [webpack.Progress] 66% building 789/831 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/added/index.js - [webpack.Progress] 66% building 789/832 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/Dropdown.styles.js - [webpack.Progress] 66% building 789/833 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/information-box/information-box.jsx - [webpack.Progress] 66% building 790/833 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/information-box/information-box.jsx - [webpack.Progress] 66% building 790/834 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/constants/sizes.js - [webpack.Progress] 66% building 791/834 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/constants/sizes.js - [webpack.Progress] 66% building 792/834 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/constants/sizes.js - [webpack.Progress] 66% building 792/835 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/DropdownConstants.js - [webpack.Progress] 66% building 792/836 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/utils/dist/utils.browser.esm.js - [webpack.Progress] 66% building 793/836 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/utils/dist/utils.browser.esm.js - [webpack.Progress] 66% building 793/837 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonWrapper.jsx - [webpack.Progress] 66% building 794/837 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonWrapper.jsx - [webpack.Progress] 66% building 795/837 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/ButtonWrapper.jsx - [webpack.Progress] 66% building 795/838 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/cache/dist/cache.browser.esm.js - [webpack.Progress] 66% building 795/839 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/SplitButton/SplitButton.jsx - [webpack.Progress] 66% building 795/840 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/encoders/der.js - [webpack.Progress] 66% building 795/841 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/encoders/pem.js - [webpack.Progress] 66% building 795/842 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/constants/der.js - [webpack.Progress] 66% building 795/843 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/decoders/der.js - [webpack.Progress] 66% building 795/844 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/base/reporter.js - [webpack.Progress] 66% building 796/844 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/base/reporter.js - [webpack.Progress] 66% building 796/845 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseKeysIn.js - [webpack.Progress] 66% building 796/846 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/base/node.js - [webpack.Progress] 66% building 796/847 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseUniq.js - [webpack.Progress] 66% building 796/848 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim-forced.js - [webpack.Progress] 66% building 797/848 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim-forced.js - [webpack.Progress] 66% building 798/848 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim-forced.js - [webpack.Progress] 66% building 799/848 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim-forced.js - [webpack.Progress] 66% building 800/848 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim-forced.js - [webpack.Progress] 66% building 800/849 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/Tooltip.scss - [webpack.Progress] 66% building 801/849 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-trim-forced.js - [webpack.Progress] 66% building 801/850 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/Tooltip.scss - [webpack.Progress] 66% building 802/850 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/Tooltip.scss - [webpack.Progress] 66% building 803/850 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/Tooltip.scss - [webpack.Progress] 66% building 804/850 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/Tooltip.scss - [webpack.Progress] 66% building 804/851 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_nativeCreate.js - [webpack.Progress] 66% building 804/852 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/TooltipContent.jsx - [webpack.Progress] 66% building 805/852 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/TooltipContent.jsx - [webpack.Progress] 66% building 805/853 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hastscript/index.js - [webpack.Progress] 66% building 805/854 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/base/buffer.js - [webpack.Progress] 66% building 805/855 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/_stream_writable.js - [webpack.Progress] 66% building 805/856 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/_stream_duplex.js - [webpack.Progress] 66% building 805/857 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/_stream_readable.js - [webpack.Progress] 66% building 805/858 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/_stream_passthrough.js - [webpack.Progress] 66% building 805/859 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/_stream_transform.js - [webpack.Progress] 66% building 805/860 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/decoders/pem.js - [webpack.Progress] 66% building 806/860 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/decoders/pem.js - [webpack.Progress] 66% building 807/860 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/decoders/pem.js - [webpack.Progress] 66% building 808/860 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/decoders/pem.js - [webpack.Progress] 66% building 809/860 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/asn1.js/lib/asn1/decoders/pem.js - [webpack.Progress] 66% building 809/861 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useResizeObserver.js - [webpack.Progress] 66% building 809/862 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 810/862 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 811/862 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 812/862 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 813/862 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 814/862 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 815/862 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 816/862 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 817/862 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 818/862 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 67% building 819/862 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 66% building 819/863 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/component-state-description/ComponentStateDescription.jsx - [webpack.Progress] 66% building 819/864 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/TooltipConstants.js - [webpack.Progress] 66% building 819/865 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/constants/AnimationTypes.js - [webpack.Progress] 66% building 820/865 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/constants/AnimationTypes.js - [webpack.Progress] 66% building 821/865 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/constants/AnimationTypes.js - [webpack.Progress] 67% building 822/865 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/constants/AnimationTypes.js - [webpack.Progress] 66% building 822/866 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/helpers/screenReaderAccessHelper.js - [webpack.Progress] 67% building 823/866 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/helpers/screenReaderAccessHelper.js - [webpack.Progress] 67% building 824/866 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/helpers/screenReaderAccessHelper.js - [webpack.Progress] 67% building 825/866 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/helpers/screenReaderAccessHelper.js - [webpack.Progress] 67% building 825/867 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/ClearIndicator/ClearIndicator.jsx - [webpack.Progress] 67% building 825/868 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/singleValue/singleValue.jsx - [webpack.Progress] 66% building 825/869 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/DropdownIndicator/DropdownIndicator.jsx - [webpack.Progress] 66% building 825/870 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/option/option.jsx - [webpack.Progress] 66% building 825/871 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/menu/menu.jsx - [webpack.Progress] 66% building 825/872 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useAfterFirstRender.js - [webpack.Progress] 66% building 825/873 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 66% building 826/873 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 66% building 827/873 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 66% building 828/873 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 66% building 829/873 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 830/873 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 831/873 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 832/873 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 833/873 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 834/873 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 835/873 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 836/873 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 837/873 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 838/873 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 839/873 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 840/873 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 841/873 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/CounterConstants.js - [webpack.Progress] 67% building 841/874 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/PreviewWeb.js - [webpack.Progress] 67% building 841/875 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dialog/Dialog.jsx - [webpack.Progress] 67% building 842/875 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dialog/Dialog.jsx - [webpack.Progress] 67% building 842/876 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/types.js - [webpack.Progress] 67% building 843/876 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/types.js - [webpack.Progress] 67% building 843/877 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/simulate-pageload.js - [webpack.Progress] 67% building 843/878 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/composeConfigs.js - [webpack.Progress] 67% building 844/878 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/composeConfigs.js - [webpack.Progress] 67% building 845/878 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/composeConfigs.js - [webpack.Progress] 67% building 846/878 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/composeConfigs.js - [webpack.Progress] 67% building 847/878 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/composeConfigs.js - [webpack.Progress] 67% building 848/878 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/composeConfigs.js - [webpack.Progress] 68% building 849/878 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/composeConfigs.js - [webpack.Progress] 68% building 850/878 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/composeConfigs.js - [webpack.Progress] 68% building 850/879 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/information-box/information-box.scss - [webpack.Progress] 68% building 851/879 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/composeConfigs.js - [webpack.Progress] 68% building 851/880 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/information-box/information-box.scss - [webpack.Progress] 67% building 851/881 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-inlinesvg/esm/index.js - [webpack.Progress] 67% building 851/882 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_nativeKeysIn.js - [webpack.Progress] 67% building 851/883 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arrayIncludesWith.js - [webpack.Progress] 67% building 851/884 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_createSet.js - [webpack.Progress] 67% building 851/885 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arrayIncludes.js - [webpack.Progress] 67% building 851/886 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isPrototype.js - [webpack.Progress] 67% building 852/886 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isPrototype.js - [webpack.Progress] 67% building 853/886 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isPrototype.js - [webpack.Progress] 67% building 853/887 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/ToastLink/ToastLink.scss - [webpack.Progress] 67% building 854/887 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isPrototype.js - [webpack.Progress] 67% building 854/888 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/ToastLink/ToastLink.scss - [webpack.Progress] 67% building 855/888 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/ToastLink/ToastLink.scss - [webpack.Progress] 67% building 856/888 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/ToastLink/ToastLink.scss - [webpack.Progress] 67% building 856/889 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js - [webpack.Progress] 67% building 857/889 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js - [webpack.Progress] 67% building 858/889 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/use-isomorphic-layout-effect/dist/use-isomorphic-layout-effect.browser.esm.js - [webpack.Progress] 67% building 858/890 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hastscript/html.js - [webpack.Progress] 67% building 858/891 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/TooltipContent.scss - [webpack.Progress] 67% building 859/891 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hastscript/html.js - [webpack.Progress] 67% building 859/892 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/TooltipContent.scss - [webpack.Progress] 67% building 860/892 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/TooltipContent.scss - [webpack.Progress] 67% building 860/893 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/SplitButton/SplitButton.scss - [webpack.Progress] 67% building 861/893 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Tooltip/__stories__/TooltipContent.scss - [webpack.Progress] 67% building 861/894 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/SplitButton/SplitButton.scss - [webpack.Progress] 67% building 861/895 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/readable-browser.js - [webpack.Progress] 67% building 861/896 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/safe-buffer/index.js - [webpack.Progress] 67% building 862/896 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/safe-buffer/index.js - [webpack.Progress] 67% building 863/896 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/safe-buffer/index.js - [webpack.Progress] 67% building 864/896 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/safe-buffer/index.js - [webpack.Progress] 67% building 865/896 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/safe-buffer/index.js - [webpack.Progress] 67% building 865/897 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/core-client/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 67% building 865/898 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 67% building 866/898 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 67% building 867/898 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 67% building 868/898 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 869/898 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 870/898 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 871/898 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 872/898 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 873/898 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 874/898 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 875/898 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 876/898 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 877/898 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 878/898 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/index.js - [webpack.Progress] 68% building 878/899 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dialog/consts/dialog-show-hide-event.js - [webpack.Progress] 68% building 878/900 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/helper/dom-helpers.js - [webpack.Progress] 68% building 879/900 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/helper/dom-helpers.js - [webpack.Progress] 68% building 879/901 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/component-state-description/ComponentStateDescription.scss - [webpack.Progress] 68% building 880/901 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/helper/dom-helpers.js - [webpack.Progress] 68% building 880/902 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/component-state-description/ComponentStateDescription.scss - [webpack.Progress] 68% building 881/902 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/component-state-description/ComponentStateDescription.scss - [webpack.Progress] 68% building 882/902 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/component-state-description/ComponentStateDescription.scss - [webpack.Progress] 68% building 883/902 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/component-state-description/ComponentStateDescription.scss - [webpack.Progress] 68% building 883/903 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DropdownChevronDown.js - [webpack.Progress] 68% building 883/904 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/utils/dom-utils.js - [webpack.Progress] 68% building 884/904 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/utils/dom-utils.js - [webpack.Progress] 68% building 885/904 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/utils/dom-utils.js - [webpack.Progress] 68% building 886/904 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/utils/dom-utils.js - [webpack.Progress] 68% building 886/905 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/singleValue/singleValue.scss - [webpack.Progress] 68% building 887/905 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/utils/dom-utils.js - [webpack.Progress] 68% building 887/906 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/singleValue/singleValue.scss - [webpack.Progress] 68% building 887/907 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/menu/menu.scss - [webpack.Progress] 68% building 888/907 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/singleValue/singleValue.scss - [webpack.Progress] 68% building 888/908 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/menu/menu.scss - [webpack.Progress] 68% building 888/909 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/option/option.scss - [webpack.Progress] 68% building 889/909 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/menu/menu.scss - [webpack.Progress] 68% building 889/910 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/option/option.scss - [webpack.Progress] 68% building 890/910 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/option/option.scss - [webpack.Progress] 68% building 891/910 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/option/option.scss - [webpack.Progress] 68% building 892/910 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dropdown/components/option/option.scss - [webpack.Progress] 68% building 892/911 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Loader/Loader.jsx - [webpack.Progress] 68% building 892/912 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/destroy.js - [webpack.Progress] 68% building 892/913 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/stream-browser.js - [webpack.Progress] 68% building 893/913 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/stream-browser.js - [webpack.Progress] 68% building 894/913 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/stream-browser.js - [webpack.Progress] 68% building 895/913 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/stream-browser.js - [webpack.Progress] 68% building 895/914 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Link/Link.jsx - [webpack.Progress] 68% building 895/915 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/renderDocs.js - [webpack.Progress] 68% building 895/916 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/utils/index.js - [webpack.Progress] 68% building 896/916 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/deep-object-diff/dist/utils/index.js - [webpack.Progress] 68% building 896/917 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/debounce.js - [webpack.Progress] 68% building 896/918 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/DialogContentContainer/DialogContentContainer.jsx - [webpack.Progress] 68% building 897/918 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/DialogContentContainer/DialogContentContainer.jsx - [webpack.Progress] 68% building 897/919 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-inlinesvg/esm/types.js - [webpack.Progress] 68% building 897/920 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.from-entries.js - [webpack.Progress] 68% building 897/921 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-inlinesvg/esm/helpers.js - [webpack.Progress] 68% building 897/922 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/hash/dist/hash.browser.esm.js - [webpack.Progress] 68% building 897/923 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/web.url.js - [webpack.Progress] 68% building 898/923 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/web.url.js - [webpack.Progress] 68% building 898/924 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/unitless/dist/unitless.browser.esm.js - [webpack.Progress] 68% building 898/925 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIndexOf.js - [webpack.Progress] 68% building 899/925 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIndexOf.js - [webpack.Progress] 68% building 900/925 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIndexOf.js - [webpack.Progress] 68% building 900/926 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_readable.js - [webpack.Progress] 68% building 900/927 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_passthrough.js - [webpack.Progress] 68% building 900/928 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_transform.js - [webpack.Progress] 68% building 900/929 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_duplex.js - [webpack.Progress] 68% building 901/929 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_duplex.js - [webpack.Progress] 68% building 902/929 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_duplex.js - [webpack.Progress] 68% building 902/930 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_writable.js - [webpack.Progress] 68% building 903/930 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_writable.js - [webpack.Progress] 68% building 904/930 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_writable.js - [webpack.Progress] 68% building 904/931 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dialog/Dialog.scss - [webpack.Progress] 68% building 905/931 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/_stream_writable.js - [webpack.Progress] 68% building 905/932 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dialog/Dialog.scss - [webpack.Progress] 68% building 906/932 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dialog/Dialog.scss - [webpack.Progress] 68% building 906/933 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hastscript/factory.js - [webpack.Progress] 68% building 906/934 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/pipeline.js - [webpack.Progress] 68% building 906/935 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/end-of-stream.js - [webpack.Progress] 68% building 906/936 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-windowed-select/dist/main.js - [webpack.Progress] 68% building 907/936 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-windowed-select/dist/main.js - [webpack.Progress] 68% building 908/936 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-windowed-select/dist/main.js - [webpack.Progress] 68% building 909/936 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-windowed-select/dist/main.js - [webpack.Progress] 68% building 909/937 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/react-select.browser.esm.js - [webpack.Progress] 68% building 909/938 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/async/dist/react-select.browser.esm.js - [webpack.Progress] 68% building 909/939 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/CSSTransition.js - [webpack.Progress] 68% building 910/939 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/CSSTransition.js - [webpack.Progress] 68% building 911/939 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/CSSTransition.js - [webpack.Progress] 68% building 912/939 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/CSSTransition.js - [webpack.Progress] 68% building 912/940 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/config.js - [webpack.Progress] 68% building 913/940 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/config.js - [webpack.Progress] 68% building 914/940 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/config.js - [webpack.Progress] 68% building 915/940 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/config.js - [webpack.Progress] 68% building 916/940 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/config.js - [webpack.Progress] 68% building 916/941 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/Transition.js - [webpack.Progress] 68% building 917/941 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/Transition.js - [webpack.Progress] 68% building 918/941 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/Transition.js - [webpack.Progress] 68% building 919/941 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/Transition.js - [webpack.Progress] 68% building 920/941 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/Transition.js - [webpack.Progress] 68% building 920/942 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/TransitionGroup.js - [webpack.Progress] 68% building 920/943 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/SwitchTransition.js - [webpack.Progress] 68% building 920/944 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/ReplaceTransition.js - [webpack.Progress] 68% building 921/944 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/ReplaceTransition.js - [webpack.Progress] 68% building 921/945 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/qs/lib/index.js - [webpack.Progress] 68% building 922/945 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/qs/lib/index.js - [webpack.Progress] 68% building 923/945 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/qs/lib/index.js - [webpack.Progress] 68% building 923/946 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/safer-buffer/safer.js - [webpack.Progress] 68% building 923/947 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/minimalistic-assert/index.js - [webpack.Progress] 68% building 924/947 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/minimalistic-assert/index.js - [webpack.Progress] 68% building 924/948 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/UrlStore.js - [webpack.Progress] 68% building 924/949 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/WebView.js - [webpack.Progress] 68% building 925/949 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/WebView.js - [webpack.Progress] 68% building 926/949 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/WebView.js - [webpack.Progress] 68% building 927/949 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/WebView.js - [webpack.Progress] 68% building 928/949 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/WebView.js - [webpack.Progress] 68% building 928/950 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/html.js - [webpack.Progress] 68% building 929/950 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/html.js - [webpack.Progress] 68% building 930/950 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/html.js - [webpack.Progress] 68% building 931/950 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/html.js - [webpack.Progress] 68% building 932/950 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/html.js - [webpack.Progress] 68% building 933/950 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/html.js - [webpack.Progress] 68% building 933/951 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/errors-browser.js - [webpack.Progress] 68% building 934/951 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/errors-browser.js - [webpack.Progress] 68% building 934/952 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/stylis/dist/stylis.browser.esm.js - [webpack.Progress] 68% building 934/953 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Loader/Loader.scss - [webpack.Progress] 68% building 935/953 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@emotion/stylis/dist/stylis.browser.esm.js - [webpack.Progress] 68% building 935/954 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Loader/Loader.scss - [webpack.Progress] 68% building 936/954 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Loader/Loader.scss - [webpack.Progress] 68% building 936/955 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/telejson/dist/esm/index.js - [webpack.Progress] 68% building 936/956 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/process-nextick-args/index.js - [webpack.Progress] 68% building 936/957 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/channels/dist/esm/index.js - [webpack.Progress] 68% building 936/958 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/NoDocs.js - [webpack.Progress] 68% building 937/958 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/NoDocs.js - [webpack.Progress] 68% building 938/958 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/NoDocs.js - [webpack.Progress] 68% building 939/958 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/NoDocs.js - [webpack.Progress] 68% building 940/958 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/NoDocs.js - [webpack.Progress] 68% building 940/959 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Refable/Refable.jsx - [webpack.Progress] 68% building 941/959 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Refable/Refable.jsx - [webpack.Progress] 68% building 941/960 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Link/Link.scss - [webpack.Progress] 68% building 942/960 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Refable/Refable.jsx - [webpack.Progress] 68% building 942/961 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Link/Link.scss - [webpack.Progress] 68% building 942/962 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/toNumber.js - [webpack.Progress] 68% building 942/963 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dialog/DialogContent/DialogContent.jsx - [webpack.Progress] 68% building 942/964 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/focus/dist/module.js - [webpack.Progress] 68% building 942/965 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/switch/dist/module.js - [webpack.Progress] 68% building 943/965 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/switch/dist/module.js - [webpack.Progress] 68% building 943/966 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-stately/toggle/dist/module.js - [webpack.Progress] 68% building 944/966 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-stately/toggle/dist/module.js - [webpack.Progress] 68% building 944/967 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/iterate.js - [webpack.Progress] 68% building 944/968 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/now.js - [webpack.Progress] 68% building 945/968 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/now.js - [webpack.Progress] 68% building 946/968 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/now.js - [webpack.Progress] 68% building 946/969 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/DialogContentContainer/DialogContentContainer.scss - [webpack.Progress] 68% building 947/969 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/now.js - [webpack.Progress] 68% building 947/970 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/DialogContentContainer/DialogContentContainer.scss - [webpack.Progress] 68% building 948/970 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/DialogContentContainer/DialogContentContainer.scss - [webpack.Progress] 68% building 948/971 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/web.url-search-params.js - [webpack.Progress] 68% building 948/972 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-util-is/lib/util.js - [webpack.Progress] 68% building 948/973 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseFindIndex.js - [webpack.Progress] 68% building 948/974 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_strictIndexOf.js - [webpack.Progress] 68% building 948/975 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsNaN.js - [webpack.Progress] 68% building 949/975 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsNaN.js - [webpack.Progress] 68% building 949/976 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-punycode-to-ascii.js - [webpack.Progress] 68% building 949/977 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/stateManager-2f2b6f5b.browser.esm.js - [webpack.Progress] 68% building 950/977 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/stateManager-2f2b6f5b.browser.esm.js - [webpack.Progress] 68% building 950/978 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/Select-e1cf49ae.browser.esm.js - [webpack.Progress] 68% building 950/979 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/index-75b02bac.browser.esm.js - [webpack.Progress] 68% building 951/979 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/index-75b02bac.browser.esm.js - [webpack.Progress] 68% building 952/979 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/index-75b02bac.browser.esm.js - [webpack.Progress] 68% building 953/979 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/index-75b02bac.browser.esm.js - [webpack.Progress] 68% building 954/979 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/index-75b02bac.browser.esm.js - [webpack.Progress] 68% building 955/979 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-select/dist/index-75b02bac.browser.esm.js - [webpack.Progress] 68% building 955/980 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/from-browser.js - [webpack.Progress] 68% building 955/981 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/state.js - [webpack.Progress] 68% building 955/982 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Link/LinkConsts.js - [webpack.Progress] 68% building 956/982 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Link/LinkConsts.js - [webpack.Progress] 68% building 957/982 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Link/LinkConsts.js - [webpack.Progress] 68% building 958/982 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Link/LinkConsts.js - [webpack.Progress] 68% building 958/983 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/find.js - [webpack.Progress] 68% building 959/983 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/find.js - [webpack.Progress] 68% building 960/983 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/find.js - [webpack.Progress] 68% building 961/983 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/find.js - [webpack.Progress] 68% building 962/983 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/find.js - [webpack.Progress] 68% building 963/983 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/find.js - [webpack.Progress] 68% building 963/984 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js - [webpack.Progress] 68% building 964/984 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js - [webpack.Progress] 68% building 965/984 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js - [webpack.Progress] 68% building 966/984 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js - [webpack.Progress] 68% building 967/984 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js - [webpack.Progress] 69% building 968/984 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js - [webpack.Progress] 69% building 969/984 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js - [webpack.Progress] 69% building 969/985 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/TransitionGroupContext.js - [webpack.Progress] 68% building 969/986 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js - [webpack.Progress] 69% building 970/986 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js - [webpack.Progress] 69% building 971/986 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js - [webpack.Progress] 69% building 972/986 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js - [webpack.Progress] 69% building 972/987 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js - [webpack.Progress] 69% building 972/988 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/qs/lib/stringify.js - [webpack.Progress] 68% building 972/989 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/qs/lib/formats.js - [webpack.Progress] 68% building 972/990 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/qs/lib/parse.js - [webpack.Progress] 68% building 972/991 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/typeof.js - [webpack.Progress] 68% building 972/992 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/utils/PropTypes.js - [webpack.Progress] 68% building 972/993 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/utils/ChildMapping.js - [webpack.Progress] 68% building 973/993 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/utils/ChildMapping.js - [webpack.Progress] 68% building 974/993 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/utils/ChildMapping.js - [webpack.Progress] 68% building 975/993 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-transition-group/esm/utils/ChildMapping.js - [webpack.Progress] 68% building 975/994 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js - [webpack.Progress] 68% building 976/994 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js - [webpack.Progress] 68% building 977/994 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js - [webpack.Progress] 68% building 977/995 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/parseArgsParam.js - [webpack.Progress] 68% building 978/995 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/preview-web/dist/esm/parseArgsParam.js - [webpack.Progress] 68% building 978/996 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-from-dom/esm/index.js - [webpack.Progress] 68% building 979/996 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-from-dom/esm/index.js - [webpack.Progress] 68% building 979/997 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/telejson/dist/esm/dom-event.js - [webpack.Progress] 68% building 980/997 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/telejson/dist/esm/dom-event.js - [webpack.Progress] 69% building 981/997 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/telejson/dist/esm/dom-event.js - [webpack.Progress] 69% building 982/997 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/telejson/dist/esm/dom-event.js - [webpack.Progress] 69% building 983/997 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/telejson/dist/esm/dom-event.js - [webpack.Progress] 69% building 984/997 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/telejson/dist/esm/dom-event.js - [webpack.Progress] 69% building 984/998 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseTrim.js - [webpack.Progress] 69% building 985/998 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseTrim.js - [webpack.Progress] 69% building 986/998 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseTrim.js - [webpack.Progress] 69% building 987/998 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseTrim.js - [webpack.Progress] 69% building 987/999 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/get.js - [webpack.Progress] 69% building 988/999 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/get.js - [webpack.Progress] 69% building 988/1000 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/html.js - [webpack.Progress] 69% building 988/1001 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/aria.js - [webpack.Progress] 69% building 988/1002 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/xmlns.js - [webpack.Progress] 69% building 988/1003 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/xml.js - [webpack.Progress] 69% building 988/1004 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/xlink.js - [webpack.Progress] 68% building 988/1005 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/merge.js - [webpack.Progress] 69% building 989/1005 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/merge.js - [webpack.Progress] 69% building 990/1005 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/merge.js - [webpack.Progress] 69% building 991/1005 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/merge.js - [webpack.Progress] 69% building 991/1006 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/iterator-close.js - [webpack.Progress] 69% building 991/1007 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/get-iterator-method.js - [webpack.Progress] 68% building 991/1008 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dialog/DialogContent/DialogContent.scss - [webpack.Progress] 69% building 992/1008 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/get-iterator-method.js - [webpack.Progress] 68% building 992/1009 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Dialog/DialogContent/DialogContent.scss - [webpack.Progress] 68% building 992/1010 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/is-array-iterator-method.js - [webpack.Progress] 68% building 992/1011 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/get-iterator.js - [webpack.Progress] 68% building 992/1012 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/classof.js - [webpack.Progress] 68% building 993/1012 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/classof.js - [webpack.Progress] 68% building 993/1013 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/an-instance.js - [webpack.Progress] 68% building 993/1014 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/create-iterator-constructor.js - [webpack.Progress] 68% building 993/1015 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/redefine-all.js - [webpack.Progress] 68% building 993/1016 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/native-url.js - [webpack.Progress] 68% building 993/1017 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/inherits.js - [webpack.Progress] 68% building 993/1018 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/createClass.js - [webpack.Progress] 68% building 993/1019 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/classCallCheck.js - [webpack.Progress] 68% building 993/1020 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js - [webpack.Progress] 68% building 993/1021 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/typeof.js - [webpack.Progress] 68% building 993/1022 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/defineProperty.js - [webpack.Progress] 68% building 993/1023 modules 30 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib util - [webpack.Progress] 68% building 994/1023 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/defineProperty.js - [webpack.Progress] 68% building 995/1023 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/defineProperty.js - [webpack.Progress] 68% building 996/1023 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/defineProperty.js - [webpack.Progress] 68% building 997/1023 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/defineProperty.js - [webpack.Progress] 68% building 997/1024 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js - [webpack.Progress] 68% building 997/1025 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/slicedToArray.js - [webpack.Progress] 68% building 997/1026 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/assertThisInitialized.js - [webpack.Progress] 68% building 997/1027 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/toConsumableArray.js - [webpack.Progress] 68% building 997/1028 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/slicedToArray.js - [webpack.Progress] 68% building 998/1028 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/slicedToArray.js - [webpack.Progress] 68% building 999/1028 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/slicedToArray.js - [webpack.Progress] 68% building 999/1029 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/normalize.js - [webpack.Progress] 68% building 1000/1029 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/normalize.js - [webpack.Progress] 68% building 1001/1029 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/normalize.js - [webpack.Progress] 68% building 1002/1029 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/normalize.js - [webpack.Progress] 68% building 1003/1029 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/normalize.js - [webpack.Progress] 68% building 1004/1029 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/normalize.js - [webpack.Progress] 68% building 1005/1029 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/normalize.js - [webpack.Progress] 68% building 1006/1029 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/normalize.js - [webpack.Progress] 68% building 1007/1029 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/normalize.js - [webpack.Progress] 68% building 1007/1030 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/info.js - [webpack.Progress] 68% building 1007/1031 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/defined-info.js - [webpack.Progress] 68% building 1007/1032 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 68% building 1008/1032 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 68% building 1009/1032 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 68% building 1010/1032 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 68% building 1011/1032 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 68% building 1012/1032 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 68% building 1013/1032 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 68% building 1014/1032 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 69% building 1015/1032 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 69% building 1016/1032 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 69% building 1017/1032 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 69% building 1018/1032 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 69% building 1018/1033 modules 15 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib util - [webpack.Progress] 69% building 1019/1033 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 69% building 1020/1033 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 69% building 1021/1033 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useClickOutside.js - [webpack.Progress] 69% building 1021/1034 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/qs/lib/utils.js - [webpack.Progress] 69% building 1021/1035 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/exenv/index.js - [webpack.Progress] 69% building 1022/1035 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/exenv/index.js - [webpack.Progress] 69% building 1023/1035 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/exenv/index.js - [webpack.Progress] 69% building 1023/1036 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.search.js - [webpack.Progress] 69% building 1024/1036 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.search.js - [webpack.Progress] 69% building 1025/1036 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.search.js - [webpack.Progress] 69% building 1026/1036 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.search.js - [webpack.Progress] 69% building 1027/1036 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.search.js - [webpack.Progress] 69% building 1027/1037 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/Button.scss - [webpack.Progress] 69% building 1028/1037 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.search.js - [webpack.Progress] 69% building 1028/1038 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/Button.scss - [webpack.Progress] 69% building 1028/1039 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/destroy.js - [webpack.Progress] 69% building 1028/1040 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/index.js - [webpack.Progress] 69% building 1029/1040 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/index.js - [webpack.Progress] 69% building 1030/1040 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/index.js - [webpack.Progress] 69% building 1030/1041 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/async_iterator.js - [webpack.Progress] 69% building 1030/1042 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/buffer_list.js - [webpack.Progress] 69% building 1030/1043 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-from-dom/esm/helpers.js - [webpack.Progress] 69% building 1030/1044 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams/stream-browser.js - [webpack.Progress] 69% building 1030/1045 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/web.immediate.js - [webpack.Progress] 69% building 1030/1046 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-from.js - [webpack.Progress] 69% building 1030/1047 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/ButtonContstants.js - [webpack.Progress] 68% building 1030/1048 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js - [webpack.Progress] 68% building 1030/1049 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js - [webpack.Progress] 68% building 1030/1050 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js - [webpack.Progress] 68% building 1030/1051 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/iterableToArray.js - [webpack.Progress] 68% building 1030/1052 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js - [webpack.Progress] 68% building 1030/1053 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js - [webpack.Progress] 68% building 1030/1054 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js - [webpack.Progress] 68% building 1030/1055 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-assign.js - [webpack.Progress] 68% building 1030/1056 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-define-properties.js - [webpack.Progress] 68% building 1030/1057 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js - [webpack.Progress] 68% building 1030/1058 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/arrayWithHoles.js - [webpack.Progress] 68% building 1030/1059 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/nonIterableRest.js - [webpack.Progress] 68% building 1030/1060 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_trimmedEndIndex.js - [webpack.Progress] 68% building 1031/1060 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_trimmedEndIndex.js - [webpack.Progress] 68% building 1032/1060 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_trimmedEndIndex.js - [webpack.Progress] 68% building 1032/1061 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js - [webpack.Progress] 68% building 1032/1062 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/create.js - [webpack.Progress] 68% building 1032/1063 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/types.js - [webpack.Progress] 68% building 1032/1064 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js - [webpack.Progress] 68% building 1032/1065 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/nonIterableSpread.js - [webpack.Progress] 68% building 1032/1066 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/iterableToArray.js - [webpack.Progress] 68% building 1033/1066 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/iterableToArray.js - [webpack.Progress] 68% building 1033/1067 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/iterators.js - [webpack.Progress] 68% building 1033/1068 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/schema.js - [webpack.Progress] 67% building 1033/1069 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/case-insensitive-transform.js - [webpack.Progress] 68% building 1034/1069 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/case-insensitive-transform.js - [webpack.Progress] 68% building 1035/1069 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/case-insensitive-transform.js - [webpack.Progress] 68% building 1035/1070 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/iterators-core.js - [webpack.Progress] 68% building 1036/1070 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/iterators-core.js - [webpack.Progress] 68% building 1036/1071 modules 35 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash-base/node_modules/readable-stream/lib/internal/streams util - [webpack.Progress] 68% building 1037/1071 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/iterators-core.js - [webpack.Progress] 68% building 1038/1071 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/iterators-core.js - [webpack.Progress] 68% building 1038/1072 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/BufferList.js - [webpack.Progress] 68% building 1039/1072 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/BufferList.js - [webpack.Progress] 68% building 1040/1072 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/BufferList.js - [webpack.Progress] 68% building 1041/1072 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/BufferList.js - [webpack.Progress] 68% building 1042/1072 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/BufferList.js - [webpack.Progress] 68% building 1043/1072 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/BufferList.js - [webpack.Progress] 68% building 1044/1072 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams/BufferList.js - [webpack.Progress] 68% building 1044/1073 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1045/1073 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1046/1073 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1047/1073 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1048/1073 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1049/1073 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1050/1073 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1051/1073 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1052/1073 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1053/1073 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1054/1073 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1055/1073 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-input-autosize/lib/AutosizeInput.js - [webpack.Progress] 68% building 1055/1074 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/aesid.json - [webpack.Progress] 68% building 1055/1075 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/RadioButtonConstants.js - [webpack.Progress] 68% building 1056/1075 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/RadioButtonConstants.js - [webpack.Progress] 68% building 1057/1075 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/RadioButtonConstants.js - [webpack.Progress] 68% building 1057/1076 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoize-one/dist/memoize-one.esm.js - [webpack.Progress] 68% building 1058/1076 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoize-one/dist/memoize-one.esm.js - [webpack.Progress] 69% building 1059/1076 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoize-one/dist/memoize-one.esm.js - [webpack.Progress] 69% building 1060/1076 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoize-one/dist/memoize-one.esm.js - [webpack.Progress] 69% building 1061/1076 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoize-one/dist/memoize-one.esm.js - [webpack.Progress] 69% building 1062/1076 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoize-one/dist/memoize-one.esm.js - [webpack.Progress] 69% building 1063/1076 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoize-one/dist/memoize-one.esm.js - [webpack.Progress] 69% building 1064/1076 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoize-one/dist/memoize-one.esm.js - [webpack.Progress] 69% building 1065/1076 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/memoize-one/dist/memoize-one.esm.js - [webpack.Progress] 69% building 1065/1077 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-regex/index.js - [webpack.Progress] 69% building 1066/1077 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-regex/index.js - [webpack.Progress] 69% building 1066/1078 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ansi-to-html/lib/ansi_to_html.js - [webpack.Progress] 69% building 1066/1079 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/related-components.scss - [webpack.Progress] 69% building 1067/1079 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/ansi-to-html/lib/ansi_to_html.js - [webpack.Progress] 69% building 1067/1080 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/related-components.scss - [webpack.Progress] 69% building 1068/1080 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/related-components/related-components.scss - [webpack.Progress] 69% building 1068/1081 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-symbol/index.js - [webpack.Progress] 69% building 1068/1082 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/isobject/index.js - [webpack.Progress] 69% building 1068/1083 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-function/index.js - [webpack.Progress] 69% building 1068/1084 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link/link.scss - [webpack.Progress] 69% building 1069/1084 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-function/index.js - [webpack.Progress] 69% building 1069/1085 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link/link.scss - [webpack.Progress] 69% building 1069/1086 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js - [webpack.Progress] 69% building 1070/1086 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js - [webpack.Progress] 69% building 1070/1087 modules 17 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/readable-stream/lib/internal/streams util - [webpack.Progress] 69% building 1071/1087 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js - [webpack.Progress] 69% building 1071/1088 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/dom-helpers/esm/removeClass.js - [webpack.Progress] 69% building 1071/1089 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/dom-helpers/esm/addClass.js - [webpack.Progress] 68% building 1071/1090 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/javascript.js - [webpack.Progress] 68% building 1071/1091 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/clike.js - [webpack.Progress] 68% building 1071/1092 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@babel/runtime/helpers/arrayLikeToArray.js - [webpack.Progress] 68% building 1071/1093 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Clickable/Clickable.jsx - [webpack.Progress] 68% building 1072/1093 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Clickable/Clickable.jsx - [webpack.Progress] 68% building 1072/1094 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stringToArray.js - [webpack.Progress] 68% building 1073/1094 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_stringToArray.js - [webpack.Progress] 68% building 1073/1095 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/same-value.js - [webpack.Progress] 68% building 1073/1096 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_hasUnicode.js - [webpack.Progress] 68% building 1073/1097 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/fixProc.js - [webpack.Progress] 68% building 1074/1097 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/fixProc.js - [webpack.Progress] 68% building 1075/1097 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-asn1/fixProc.js - [webpack.Progress] 68% building 1075/1098 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/toggle/dist/module.js - [webpack.Progress] 68% building 1075/1099 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-stately/utils/dist/module.js - [webpack.Progress] 68% building 1075/1100 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/Popper.js - [webpack.Progress] 68% building 1076/1100 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/Popper.js - [webpack.Progress] 68% building 1076/1101 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/usePopper.js - [webpack.Progress] 68% building 1077/1101 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/usePopper.js - [webpack.Progress] 68% building 1077/1102 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/Reference.js - [webpack.Progress] 68% building 1077/1103 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/Manager.js - [webpack.Progress] 68% building 1078/1103 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/Manager.js - [webpack.Progress] 68% building 1078/1104 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/utils/dist/module.js - [webpack.Progress] 68% building 1079/1104 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/utils/dist/module.js - [webpack.Progress] 68% building 1079/1105 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/task.js - [webpack.Progress] 68% building 1079/1106 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/call-with-safe-iteration-closing.js - [webpack.Progress] 68% building 1080/1106 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/call-with-safe-iteration-closing.js - [webpack.Progress] 68% building 1081/1106 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/call-with-safe-iteration-closing.js - [webpack.Progress] 68% building 1081/1107 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_matchesStrictComparable.js - [webpack.Progress] 68% building 1081/1108 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isStrictComparable.js - [webpack.Progress] 68% building 1082/1108 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_isStrictComparable.js - [webpack.Progress] 68% building 1082/1109 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/interactions/dist/module.js - [webpack.Progress] 68% building 1083/1109 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/interactions/dist/module.js - [webpack.Progress] 68% building 1084/1109 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/interactions/dist/module.js - [webpack.Progress] 68% building 1084/1110 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/clsx/dist/clsx.m.js - [webpack.Progress] 68% building 1085/1110 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/clsx/dist/clsx.m.js - [webpack.Progress] 68% building 1086/1110 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/clsx/dist/clsx.m.js - [webpack.Progress] 68% building 1086/1111 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_basePropertyDeep.js - [webpack.Progress] 68% building 1087/1111 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_basePropertyDeep.js - [webpack.Progress] 68% building 1087/1112 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseKeys.js - [webpack.Progress] 68% building 1087/1113 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getMatchData.js - [webpack.Progress] 68% building 1088/1113 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_getMatchData.js - [webpack.Progress] 68% building 1088/1114 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseSet.js - [webpack.Progress] 68% building 1088/1115 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/deburr.js - [webpack.Progress] 68% building 1089/1115 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/deburr.js - [webpack.Progress] 68% building 1090/1115 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/deburr.js - [webpack.Progress] 68% building 1090/1116 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/WithTooltip.js - [webpack.Progress] 68% building 1091/1116 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/WithTooltip.js - [webpack.Progress] 68% building 1091/1117 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/icon/svg.js - [webpack.Progress] 68% building 1091/1118 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/icon/icons.js - [webpack.Progress] 68% building 1092/1118 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/icon/icons.js - [webpack.Progress] 68% building 1092/1119 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/normalizeStory.js - [webpack.Progress] 68% building 1092/1120 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/case-sensitive-transform.js - [webpack.Progress] 68% building 1093/1120 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/case-sensitive-transform.js - [webpack.Progress] 68% building 1094/1120 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/case-sensitive-transform.js - [webpack.Progress] 68% building 1095/1120 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/property-information/lib/util/case-sensitive-transform.js - [webpack.Progress] 68% building 1095/1121 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/side-channel/index.js - [webpack.Progress] 68% building 1095/1122 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-prototype-of.js - [webpack.Progress] 68% building 1095/1123 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.number.is-integer.js - [webpack.Progress] 68% building 1096/1123 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.number.is-integer.js - [webpack.Progress] 68% building 1096/1124 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/filterArgTypes.js - [webpack.Progress] 68% building 1097/1124 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/filterArgTypes.js - [webpack.Progress] 68% building 1098/1124 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/filterArgTypes.js - [webpack.Progress] 68% building 1098/1125 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/defaultValues/createFromRawDefaultProp.js - [webpack.Progress] 68% building 1098/1126 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Button/__stories__/button.stories.scss - [webpack.Progress] 68% building 1098/1127 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/avatar.stories.scss - [webpack.Progress] 68% building 1098/1128 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/__stories__/chips.stories.scss - [webpack.Progress] 68% building 1098/1129 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/__stories__/label.stories.scss - [webpack.Progress] 68% building 1099/1129 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Label/__stories__/label.stories.scss - [webpack.Progress] 68% building 1099/1130 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.math.to-string-tag.js - [webpack.Progress] 68% building 1100/1130 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.math.to-string-tag.js - [webpack.Progress] 68% building 1101/1130 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.math.to-string-tag.js - [webpack.Progress] 68% building 1102/1130 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.math.to-string-tag.js - [webpack.Progress] 68% building 1102/1131 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/prismjs/components/prism-core.js - [webpack.Progress] 68% building 1102/1132 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.json.to-string-tag.js - [webpack.Progress] 68% building 1103/1132 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.json.to-string-tag.js - [webpack.Progress] 68% building 1103/1133 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toggle/__stories__/toggle.stories.scss - [webpack.Progress] 68% building 1104/1133 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toggle/__stories__/toggle.stories.scss - [webpack.Progress] 68% building 1104/1134 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/__stories__/radioButton.stories.scss - [webpack.Progress] 68% building 1105/1134 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/__stories__/radioButton.stories.scss - [webpack.Progress] 68% building 1106/1134 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/RadioButton/__stories__/radioButton.stories.scss - [webpack.Progress] 68% building 1106/1135 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/__stories__/counter.stories.scss - [webpack.Progress] 68% building 1107/1135 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Counter/__stories__/counter.stories.scss - [webpack.Progress] 68% building 1107/1136 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/__stories__/AlertBanner.stories.scss - [webpack.Progress] 68% building 1108/1136 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/__stories__/AlertBanner.stories.scss - [webpack.Progress] 68% building 1108/1137 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.unscopables.js - [webpack.Progress] 68% building 1108/1138 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.to-string-tag.js - [webpack.Progress] 68% building 1109/1138 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.to-string-tag.js - [webpack.Progress] 68% building 1109/1139 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/SplitButton/__stories__/splitButton.stories.scss - [webpack.Progress] 68% building 1109/1140 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.to-primitive.js - [webpack.Progress] 68% building 1109/1141 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Toast/__stories__/toast.stories.scss - [webpack.Progress] 68% building 1109/1142 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.split.js - [webpack.Progress] 68% building 1109/1143 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.species.js - [webpack.Progress] 68% building 1110/1143 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.species.js - [webpack.Progress] 68% building 1110/1144 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.search.js - [webpack.Progress] 68% building 1110/1145 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.replace.js - [webpack.Progress] 68% building 1110/1146 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.match-all.js - [webpack.Progress] 68% building 1111/1146 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.match-all.js - [webpack.Progress] 68% building 1111/1147 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.match.js - [webpack.Progress] 68% building 1111/1148 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Checkbox/__stories__/checkbox.stories.scss - [webpack.Progress] 68% building 1111/1149 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/__stories__/general-hooks-stories.scss - [webpack.Progress] 67% building 1111/1150 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/ButtonGroup/__stories__/buttonGroup.stories.scss - [webpack.Progress] 67% building 1111/1151 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.scss - [webpack.Progress] 67% building 1112/1151 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.scss - [webpack.Progress] 68% building 1113/1151 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.scss - [webpack.Progress] 68% building 1114/1151 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.scss - [webpack.Progress] 68% building 1115/1151 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.scss - [webpack.Progress] 68% building 1116/1151 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.scss - [webpack.Progress] 68% building 1117/1151 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.scss - [webpack.Progress] 68% building 1118/1151 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/attentionBox.stories.scss - [webpack.Progress] 68% building 1118/1152 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.is-concat-spreadable.js - [webpack.Progress] 68% building 1118/1153 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.has-instance.js - [webpack.Progress] 68% building 1119/1153 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.has-instance.js - [webpack.Progress] 68% building 1120/1153 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.has-instance.js - [webpack.Progress] 68% building 1120/1154 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/comma-separated-tokens/index.js - [webpack.Progress] 68% building 1120/1155 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/bash.js - [webpack.Progress] 68% building 1120/1156 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsx.js - [webpack.Progress] 68% building 1121/1156 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-syntax-highlighter/dist/esm/languages/prism/jsx.js - [webpack.Progress] 68% building 1121/1157 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.symbol.async-iterator.js - [webpack.Progress] 68% building 1121/1158 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/space-separated-tokens/index.js - [webpack.Progress] 68% building 1122/1158 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/space-separated-tokens/index.js - [webpack.Progress] 68% building 1122/1159 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/dom-helpers/esm/hasClass.js - [webpack.Progress] 68% building 1123/1159 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/dom-helpers/esm/hasClass.js - [webpack.Progress] 68% building 1123/1160 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hast-util-parse-selector/index.js - [webpack.Progress] 68% building 1124/1160 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hast-util-parse-selector/index.js - [webpack.Progress] 68% building 1125/1160 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hast-util-parse-selector/index.js - [webpack.Progress] 68% building 1125/1161 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_asciiToArray.js - [webpack.Progress] 68% building 1125/1162 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_unicodeToArray.js - [webpack.Progress] 68% building 1126/1162 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_unicodeToArray.js - [webpack.Progress] 68% building 1127/1162 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_unicodeToArray.js - [webpack.Progress] 68% building 1128/1162 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_unicodeToArray.js - [webpack.Progress] 68% building 1129/1162 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_unicodeToArray.js - [webpack.Progress] 68% building 1129/1163 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Clickable/Clickable.scss - [webpack.Progress] 68% building 1130/1163 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_unicodeToArray.js - [webpack.Progress] 68% building 1130/1164 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Clickable/Clickable.scss - [webpack.Progress] 68% building 1131/1164 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Clickable/Clickable.scss - [webpack.Progress] 68% building 1132/1164 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Clickable/Clickable.scss - [webpack.Progress] 68% building 1133/1164 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Clickable/Clickable.scss - [webpack.Progress] 68% building 1133/1165 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/cloneDeep.js - [webpack.Progress] 68% building 1134/1165 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/cloneDeep.js - [webpack.Progress] 68% building 1135/1165 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/cloneDeep.js - [webpack.Progress] 68% building 1136/1165 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/cloneDeep.js - [webpack.Progress] 68% building 1137/1165 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/cloneDeep.js - [webpack.Progress] 68% building 1137/1166 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper/lib/esm/utils.js - [webpack.Progress] 68% building 1137/1167 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.number.to-fixed.js - [webpack.Progress] 68% building 1137/1168 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/typography/DocumentWrapper.js - [webpack.Progress] 68% building 1138/1168 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/typography/DocumentWrapper.js - [webpack.Progress] 68% building 1139/1168 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/typography/DocumentWrapper.js - [webpack.Progress] 68% building 1139/1169 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/engine-is-ios.js - [webpack.Progress] 68% building 1139/1170 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/call-bind/callBound.js - [webpack.Progress] 68% building 1139/1171 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/has-symbols/shams.js - [webpack.Progress] 68% building 1139/1172 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/html.js - [webpack.Progress] 68% building 1140/1172 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/html.js - [webpack.Progress] 68% building 1141/1172 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/html.js - [webpack.Progress] 68% building 1142/1172 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/html.js - [webpack.Progress] 68% building 1143/1172 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/html.js - [webpack.Progress] 68% building 1143/1173 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/throttle.js - [webpack.Progress] 68% building 1144/1173 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/throttle.js - [webpack.Progress] 68% building 1145/1173 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/throttle.js - [webpack.Progress] 68% building 1146/1173 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/throttle.js - [webpack.Progress] 68% building 1146/1174 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/xtend/immutable.js - [webpack.Progress] 68% building 1147/1174 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/xtend/immutable.js - [webpack.Progress] 68% building 1147/1175 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_nativeKeys.js - [webpack.Progress] 68% building 1147/1176 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/spaced/Spaced.js - [webpack.Progress] 68% building 1148/1176 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/spaced/Spaced.js - [webpack.Progress] 68% building 1149/1176 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/spaced/Spaced.js - [webpack.Progress] 68% building 1149/1177 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/Badge/Badge.js - [webpack.Progress] 68% building 1149/1178 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_assignValue.js - [webpack.Progress] 68% building 1149/1179 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_deburrLetter.js - [webpack.Progress] 68% building 1149/1180 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/Tooltip.js - [webpack.Progress] 68% building 1150/1180 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/tooltip/Tooltip.js - [webpack.Progress] 68% building 1150/1181 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyboardButtonPressedFunc.js - [webpack.Progress] 68% building 1151/1181 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyboardButtonPressedFunc.js - [webpack.Progress] 68% building 1152/1181 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyboardButtonPressedFunc.js - [webpack.Progress] 68% building 1153/1181 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useKeyboardButtonPressedFunc.js - [webpack.Progress] 68% building 1153/1182 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/path-browserify/index.js - [webpack.Progress] 68% building 1154/1182 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/path-browserify/index.js - [webpack.Progress] 68% building 1154/1183 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/refractor/lang/bash.js - [webpack.Progress] 68% building 1154/1184 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/browser.js - [webpack.Progress] 68% building 1155/1184 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/browser.js - [webpack.Progress] 68% building 1156/1184 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/browser.js - [webpack.Progress] 68% building 1157/1184 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/browser.js - [webpack.Progress] 68% building 1158/1184 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/browser.js - [webpack.Progress] 68% building 1159/1184 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/browser.js - [webpack.Progress] 68% building 1160/1184 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/browser.js - [webpack.Progress] 68% building 1161/1184 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/browser.js - [webpack.Progress] 68% building 1162/1184 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/browser.js - [webpack.Progress] 68% building 1162/1185 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/esutils/lib/utils.js - [webpack.Progress] 68% building 1163/1185 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/esutils/lib/utils.js - [webpack.Progress] 68% building 1163/1186 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/storySort.js - [webpack.Progress] 68% building 1164/1186 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/storySort.js - [webpack.Progress] 68% building 1165/1186 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/storySort.js - [webpack.Progress] 68% building 1166/1186 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/storySort.js - [webpack.Progress] 68% building 1166/1187 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/internal-metadata.js - [webpack.Progress] 68% building 1166/1188 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/define-iterator.js - [webpack.Progress] 68% building 1167/1188 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/define-iterator.js - [webpack.Progress] 68% building 1167/1189 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/dist/esm/types.js - [webpack.Progress] 68% building 1167/1190 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/well-known-symbol-wrapped.js - [webpack.Progress] 68% building 1167/1191 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/functions/create-component-story.js - [webpack.Progress] 68% building 1167/1192 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/index.js - [webpack.Progress] 68% building 1167/1193 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.fill.js - [webpack.Progress] 68% building 1168/1193 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.fill.js - [webpack.Progress] 68% building 1168/1194 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-entities/index.js - [webpack.Progress] 68% building 1169/1194 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-entities/index.js - [webpack.Progress] 68% building 1169/1195 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/IconButton.jsx - [webpack.Progress] 68% building 1170/1195 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/IconButton.jsx - [webpack.Progress] 68% building 1170/1196 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/call-bind/index.js - [webpack.Progress] 68% building 1170/1197 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/Avatar.jsx - [webpack.Progress] 68% building 1170/1198 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.array.find-index.js - [webpack.Progress] 68% building 1170/1199 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerButton/AlertBannerButton.jsx - [webpack.Progress] 68% building 1171/1199 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerButton/AlertBannerButton.jsx - [webpack.Progress] 68% building 1171/1200 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseClone.js - [webpack.Progress] 68% building 1171/1201 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-colorful/dist/index.module.js - [webpack.Progress] 68% building 1172/1201 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-colorful/dist/index.module.js - [webpack.Progress] 68% building 1172/1202 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-repeat.js - [webpack.Progress] 68% building 1173/1202 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-repeat.js - [webpack.Progress] 68% building 1174/1202 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/string-repeat.js - [webpack.Progress] 68% building 1174/1203 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/this-number-value.js - [webpack.Progress] 68% building 1174/1204 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.jsx - [webpack.Progress] 68% building 1175/1204 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.jsx - [webpack.Progress] 68% building 1176/1204 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.jsx - [webpack.Progress] 68% building 1177/1204 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.jsx - [webpack.Progress] 68% building 1178/1204 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.jsx - [webpack.Progress] 68% building 1179/1204 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.jsx - [webpack.Progress] 68% building 1180/1204 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.jsx - [webpack.Progress] 68% building 1180/1205 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/index.js - [webpack.Progress] 68% building 1180/1206 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/globalDesign.scss - [webpack.Progress] 68% building 1181/1206 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/index.js - [webpack.Progress] 68% building 1181/1207 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/globalDesign.scss - [webpack.Progress] 68% building 1182/1207 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/globalDesign.scss - [webpack.Progress] 68% building 1182/1208 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-convert/index.js - [webpack.Progress] 68% building 1182/1209 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Chips/__stories__/assets/person1.png - [webpack.Progress] 68% building 1182/1210 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/has-symbols/index.js - [webpack.Progress] 68% building 1183/1210 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/has-symbols/index.js - [webpack.Progress] 68% building 1184/1210 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/has-symbols/index.js - [webpack.Progress] 68% building 1184/1211 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 68% building 1184/1212 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_basePropertyOf.js - [webpack.Progress] 68% building 1185/1212 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_basePropertyOf.js - [webpack.Progress] 68% building 1185/1213 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/list.json - [webpack.Progress] 68% building 1186/1213 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/list.json - [webpack.Progress] 68% building 1187/1213 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/list.json - [webpack.Progress] 68% building 1188/1213 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/list.json - [webpack.Progress] 68% building 1188/1214 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-deep-equal/index.js - [webpack.Progress] 68% building 1189/1214 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-deep-equal/index.js - [webpack.Progress] 68% building 1190/1214 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-deep-equal/index.js - [webpack.Progress] 68% building 1190/1215 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/index.js - [webpack.Progress] 68% building 1190/1216 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/encrypter.js - [webpack.Progress] 68% building 1191/1216 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/encrypter.js - [webpack.Progress] 68% building 1191/1217 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/evp_bytestokey/index.js - [webpack.Progress] 68% building 1191/1218 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isString.js - [webpack.Progress] 68% building 1191/1219 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/decrypter.js - [webpack.Progress] 68% building 1192/1219 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/decrypter.js - [webpack.Progress] 68% building 1193/1219 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/decrypter.js - [webpack.Progress] 68% building 1194/1219 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/decrypter.js - [webpack.Progress] 68% building 1194/1220 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerLink/AlertBannerLink.jsx - [webpack.Progress] 68% building 1195/1220 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerLink/AlertBannerLink.jsx - [webpack.Progress] 68% building 1196/1220 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerLink/AlertBannerLink.jsx - [webpack.Progress] 68% building 1197/1220 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerLink/AlertBannerLink.jsx - [webpack.Progress] 68% building 1197/1221 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-fast-compare/index.js - [webpack.Progress] 68% building 1198/1221 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-fast-compare/index.js - [webpack.Progress] 68% building 1199/1221 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-fast-compare/index.js - [webpack.Progress] 68% building 1200/1221 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-fast-compare/index.js - [webpack.Progress] 68% building 1200/1222 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/esutils/lib/ast.js - [webpack.Progress] 68% building 1201/1222 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/esutils/lib/ast.js - [webpack.Progress] 68% building 1201/1223 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/warning/warning.js - [webpack.Progress] 68% building 1201/1224 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/freezing.js - [webpack.Progress] 68% building 1201/1225 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/RoundedCornerComponent.jsx - [webpack.Progress] 68% building 1201/1226 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/esutils/lib/keyword.js - [webpack.Progress] 68% building 1201/1227 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/esutils/lib/code.js - [webpack.Progress] 68% building 1202/1227 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/esutils/lib/code.js - [webpack.Progress] 68% building 1202/1228 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/index.js - [webpack.Progress] 68% building 1202/1229 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-fill.js - [webpack.Progress] 68% building 1203/1229 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-fill.js - [webpack.Progress] 68% building 1203/1230 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/enums.js - [webpack.Progress] 68% building 1203/1231 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/popper-lite.js - [webpack.Progress] 68% building 1203/1232 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/popper.js - [webpack.Progress] 68% building 1203/1233 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/createPopper.js - [webpack.Progress] 68% building 1204/1233 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/createPopper.js - [webpack.Progress] 68% building 1205/1233 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/createPopper.js - [webpack.Progress] 68% building 1205/1234 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.jsx - [webpack.Progress] 68% building 1206/1234 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.jsx - [webpack.Progress] 68% building 1207/1234 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.jsx - [webpack.Progress] 68% building 1208/1234 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.jsx - [webpack.Progress] 68% building 1208/1235 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/ssr/dist/module.js - [webpack.Progress] 68% building 1209/1235 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/ssr/dist/module.js - [webpack.Progress] 68% building 1210/1235 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/ssr/dist/module.js - [webpack.Progress] 68% building 1210/1236 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/index.js - [webpack.Progress] 68% building 1211/1236 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/index.js - [webpack.Progress] 68% building 1212/1236 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/index.js - [webpack.Progress] 68% building 1213/1236 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/index.js - [webpack.Progress] 68% building 1213/1237 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-entities/decode-entity.browser.js - [webpack.Progress] 68% building 1214/1237 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/parse-entities/decode-entity.browser.js - [webpack.Progress] 68% building 1214/1238 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/parse.js - [webpack.Progress] 68% building 1214/1239 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/inputUsageTypes.js - [webpack.Progress] 68% building 1214/1240 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object-inspect/index.js - [webpack.Progress] 68% building 1214/1241 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-intrinsic/index.js - [webpack.Progress] 68% building 1215/1241 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-intrinsic/index.js - [webpack.Progress] 68% building 1215/1242 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/index.js - [webpack.Progress] 68% building 1215/1243 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/assets/person1.png - [webpack.Progress] 68% building 1216/1243 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AttentionBox/__stories__/assets/person1.png - [webpack.Progress] 68% building 1216/1244 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isSet.js - [webpack.Progress] 68% building 1216/1245 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isMap.js - [webpack.Progress] 68% building 1216/1246 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/IconButton.scss - [webpack.Progress] 68% building 1217/1246 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/isMap.js - [webpack.Progress] 68% building 1217/1247 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/IconButton.scss - [webpack.Progress] 68% building 1218/1247 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/IconButton.scss - [webpack.Progress] 68% building 1218/1248 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_initCloneObject.js - [webpack.Progress] 68% building 1219/1248 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_initCloneObject.js - [webpack.Progress] 68% building 1219/1249 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_initCloneByTag.js - [webpack.Progress] 68% building 1220/1249 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_initCloneByTag.js - [webpack.Progress] 68% building 1221/1249 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_initCloneByTag.js - [webpack.Progress] 68% building 1222/1249 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_initCloneByTag.js - [webpack.Progress] 68% building 1222/1250 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_initCloneArray.js - [webpack.Progress] 68% building 1223/1250 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_initCloneArray.js - [webpack.Progress] 68% building 1224/1250 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_initCloneArray.js - [webpack.Progress] 68% building 1224/1251 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_copySymbolsIn.js - [webpack.Progress] 68% building 1224/1252 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_copySymbols.js - [webpack.Progress] 68% building 1224/1253 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_copyArray.js - [webpack.Progress] 68% building 1224/1254 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneBuffer.js - [webpack.Progress] 68% building 1224/1255 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/Avatar.scss - [webpack.Progress] 68% building 1225/1255 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneBuffer.js - [webpack.Progress] 68% building 1225/1256 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/Avatar.scss - [webpack.Progress] 68% building 1226/1256 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/Avatar.scss - [webpack.Progress] 68% building 1227/1256 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/Avatar.scss - [webpack.Progress] 68% building 1228/1256 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/Avatar.scss - [webpack.Progress] 68% building 1229/1256 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/Avatar.scss - [webpack.Progress] 68% building 1229/1257 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/index.js - [webpack.Progress] 68% building 1230/1257 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/index.js - [webpack.Progress] 68% building 1230/1258 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseAssignIn.js - [webpack.Progress] 68% building 1230/1259 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseAssign.js - [webpack.Progress] 68% building 1230/1260 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_arrayEach.js - [webpack.Progress] 68% building 1230/1261 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/stable/stable.js - [webpack.Progress] 68% building 1230/1262 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/dataTypes.js - [webpack.Progress] 68% building 1230/1263 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper-tooltip/dist/esm/react-popper-tooltip.js - [webpack.Progress] 68% building 1231/1263 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-popper-tooltip/dist/esm/react-popper-tooltip.js - [webpack.Progress] 68% building 1231/1264 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/slash/index.js - [webpack.Progress] 68% building 1231/1265 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/objectTypes.js - [webpack.Progress] 68% building 1231/1266 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/types/deltaTypes.js - [webpack.Progress] 68% building 1231/1267 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/styles.js - [webpack.Progress] 68% building 1231/1268 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerButton/AlertBannerButton.scss - [webpack.Progress] 68% building 1232/1268 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/utils/styles.js - [webpack.Progress] 68% building 1232/1269 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerButton/AlertBannerButton.scss - [webpack.Progress] 68% building 1233/1269 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerButton/AlertBannerButton.scss - [webpack.Progress] 68% building 1233/1270 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 68% building 1234/1270 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 68% building 1235/1270 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 68% building 1236/1270 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 68% building 1237/1270 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 68% building 1238/1270 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 68% building 1238/1271 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/blocks.js - [webpack.Progress] 68% building 1239/1271 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/blocks.js - [webpack.Progress] 68% building 1240/1271 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/blocks.js - [webpack.Progress] 68% building 1241/1271 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/blocks.js - [webpack.Progress] 68% building 1242/1271 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/blocks.js - [webpack.Progress] 68% building 1243/1271 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/blocks.js - [webpack.Progress] 68% building 1243/1272 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/applyStyles.js - [webpack.Progress] 68% building 1243/1273 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/hide.js - [webpack.Progress] 68% building 1243/1274 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/GlobalSettingGeneralComponent.jsx - [webpack.Progress] 68% building 1244/1274 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/GlobalSettingGeneralComponent.jsx - [webpack.Progress] 68% building 1244/1275 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/SpacingComponent.jsx - [webpack.Progress] 68% building 1244/1276 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContext.js - [webpack.Progress] 68% building 1245/1276 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContext.js - [webpack.Progress] 68% building 1246/1276 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContext.js - [webpack.Progress] 68% building 1247/1276 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContext.js - [webpack.Progress] 68% building 1247/1277 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/decode.js - [webpack.Progress] 68% building 1248/1277 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/decode.js - [webpack.Progress] 68% building 1249/1277 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/decode.js - [webpack.Progress] 68% building 1249/1278 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/AddSmall.js - [webpack.Progress] 68% building 1249/1279 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/aes.js - [webpack.Progress] 68% building 1249/1280 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/encode.js - [webpack.Progress] 68% building 1249/1281 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/streamCipher.js - [webpack.Progress] 68% building 1249/1282 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/authCipher.js - [webpack.Progress] 68% building 1250/1282 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/authCipher.js - [webpack.Progress] 68% building 1251/1282 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/authCipher.js - [webpack.Progress] 68% building 1251/1283 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonNode.js - [webpack.Progress] 68% building 1251/1284 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-convert/conversions.js - [webpack.Progress] 68% building 1252/1284 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-convert/conversions.js - [webpack.Progress] 68% building 1252/1285 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@mdx-js/react/dist/esm.js - [webpack.Progress] 68% building 1253/1285 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@mdx-js/react/dist/esm.js - [webpack.Progress] 68% building 1254/1285 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@mdx-js/react/dist/esm.js - [webpack.Progress] 68% building 1255/1285 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@mdx-js/react/dist/esm.js - [webpack.Progress] 68% building 1255/1286 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/colors/colors-helper.js - [webpack.Progress] 68% building 1256/1286 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/colors/colors-helper.js - [webpack.Progress] 68% building 1257/1286 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/colors/colors-helper.js - [webpack.Progress] 68% building 1257/1287 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--5-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-convert/route.js - [webpack.Progress] 68% building 1257/1288 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/typography/typography-helpers.js - [webpack.Progress] 68% building 1257/1289 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js - [webpack.Progress] 68% building 1257/1290 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/instanceOf.js - [webpack.Progress] 68% building 1257/1291 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/services/IconButton-helpers.js - [webpack.Progress] 68% building 1258/1291 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/services/IconButton-helpers.js - [webpack.Progress] 68% building 1259/1291 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/IconButton/services/IconButton-helpers.js - [webpack.Progress] 68% building 1259/1292 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarContent.jsx - [webpack.Progress] 68% building 1259/1293 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/SearchConstats.js - [webpack.Progress] 68% building 1259/1294 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js - [webpack.Progress] 68% building 1260/1294 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js - [webpack.Progress] 68% building 1261/1294 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js - [webpack.Progress] 68% building 1262/1294 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/preventOverflow.js - [webpack.Progress] 68% building 1262/1295 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarBadge.jsx - [webpack.Progress] 68% building 1262/1296 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/detectOverflow.js - [webpack.Progress] 68% building 1262/1297 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/mergeByName.js - [webpack.Progress] 68% building 1262/1298 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getBasePlacement.js - [webpack.Progress] 68% building 1262/1299 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/uniqueBy.js - [webpack.Progress] 68% building 1262/1300 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/validateModifiers.js - [webpack.Progress] 68% building 1262/1301 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarConstants.jsx - [webpack.Progress] 68% building 1263/1301 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarConstants.jsx - [webpack.Progress] 68% building 1264/1301 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarConstants.jsx - [webpack.Progress] 68% building 1265/1301 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarConstants.jsx - [webpack.Progress] 68% building 1265/1302 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/popperOffsets.js - [webpack.Progress] 68% building 1265/1303 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/offset.js - [webpack.Progress] 68% building 1265/1304 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/RoundedCornerComponent.scss - [webpack.Progress] 68% building 1266/1304 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/offset.js - [webpack.Progress] 68% building 1266/1305 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/RoundedCornerComponent.scss - [webpack.Progress] 68% building 1266/1306 modules 40 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object-inspect ./util.inspect - [webpack.Progress] 68% building 1267/1306 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/RoundedCornerComponent.scss - [webpack.Progress] 68% building 1268/1306 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/RoundedCornerComponent.scss - [webpack.Progress] 68% building 1269/1306 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/RoundedCornerComponent.scss - [webpack.Progress] 68% building 1269/1307 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/flip.js - [webpack.Progress] 68% building 1269/1308 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/eventListeners.js - [webpack.Progress] 68% building 1269/1309 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/computeStyles.js - [webpack.Progress] 68% building 1270/1309 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/computeStyles.js - [webpack.Progress] 68% building 1270/1310 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/modifiers/arrow.js - [webpack.Progress] 68% building 1270/1311 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/debounce.js - [webpack.Progress] 68% building 1270/1312 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js - [webpack.Progress] 68% building 1270/1313 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js - [webpack.Progress] 67% building 1270/1314 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js - [webpack.Progress] 67% building 1270/1315 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js - [webpack.Progress] 67% building 1270/1316 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/orderModifiers.js - [webpack.Progress] 67% building 1270/1317 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerLink/AlertBannerLink.scss - [webpack.Progress] 67% building 1271/1317 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/orderModifiers.js - [webpack.Progress] 67% building 1271/1318 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerLink/AlertBannerLink.scss - [webpack.Progress] 67% building 1272/1318 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerLink/AlertBannerLink.scss - [webpack.Progress] 67% building 1272/1319 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.scss - [webpack.Progress] 67% building 1273/1319 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/AlertBanner/AlertBannerLink/AlertBannerLink.scss - [webpack.Progress] 67% building 1273/1320 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.scss - [webpack.Progress] 67% building 1274/1320 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.scss - [webpack.Progress] 67% building 1275/1320 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.scss - [webpack.Progress] 68% building 1276/1320 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.scss - [webpack.Progress] 68% building 1277/1320 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Search/Search.scss - [webpack.Progress] 68% building 1277/1321 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextField.jsx - [webpack.Progress] 68% building 1278/1321 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextField.jsx - [webpack.Progress] 68% building 1279/1321 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextField.jsx - [webpack.Progress] 68% building 1279/1322 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.scss - [webpack.Progress] 68% building 1280/1322 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextField.jsx - [webpack.Progress] 68% building 1280/1323 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.scss - [webpack.Progress] 68% building 1281/1323 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.scss - [webpack.Progress] 68% building 1282/1323 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.scss - [webpack.Progress] 68% building 1283/1323 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.scss - [webpack.Progress] 68% building 1284/1323 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.scss - [webpack.Progress] 68% building 1285/1323 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/BoxShadowComponent.scss - [webpack.Progress] 68% building 1285/1324 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsMap.js - [webpack.Progress] 68% building 1285/1325 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsSet.js - [webpack.Progress] 68% building 1286/1325 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseIsSet.js - [webpack.Progress] 68% building 1286/1326 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseCreate.js - [webpack.Progress] 68% building 1287/1326 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseCreate.js - [webpack.Progress] 68% building 1288/1326 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseCreate.js - [webpack.Progress] 68% building 1289/1326 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseCreate.js - [webpack.Progress] 68% building 1290/1326 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseCreate.js - [webpack.Progress] 68% building 1291/1326 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_baseCreate.js - [webpack.Progress] 68% building 1291/1327 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneArrayBuffer.js - [webpack.Progress] 68% building 1291/1328 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneTypedArray.js - [webpack.Progress] 68% building 1291/1329 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getNodeName.js - [webpack.Progress] 68% building 1291/1330 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneSymbol.js - [webpack.Progress] 68% building 1292/1330 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneSymbol.js - [webpack.Progress] 68% building 1292/1331 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneRegExp.js - [webpack.Progress] 68% building 1292/1332 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_copyObject.js - [webpack.Progress] 68% building 1292/1333 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1293/1333 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1294/1333 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1295/1333 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1296/1333 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1297/1333 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1298/1333 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1299/1333 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1300/1333 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1301/1333 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1302/1333 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1303/1333 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1304/1333 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1305/1333 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/lodash/_cloneDataView.js - [webpack.Progress] 68% building 1305/1334 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Search.js - [webpack.Progress] 68% building 1305/1335 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js - [webpack.Progress] 68% building 1305/1336 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getWindow.js - [webpack.Progress] 68% building 1305/1337 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/home.svg - [webpack.Progress] 68% building 1305/1338 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js - [webpack.Progress] 68% building 1305/1339 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/owner.svg - [webpack.Progress] 68% building 1305/1340 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/femaleIcon.png - [webpack.Progress] 68% building 1305/1341 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/maleIcon.png - [webpack.Progress] 68% building 1305/1342 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/math.js - [webpack.Progress] 68% building 1305/1343 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/store/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 68% building 1305/1344 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/maps/entities.json - [webpack.Progress] 68% building 1305/1345 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/maps/xml.json - [webpack.Progress] 68% building 1305/1346 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/maps/legacy.json - [webpack.Progress] 68% building 1305/1347 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/person3.png - [webpack.Progress] 68% building 1305/1348 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/expandToHashMap.js - [webpack.Progress] 68% building 1305/1349 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/mergePaddingObject.js - [webpack.Progress] 68% building 1305/1350 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/format.js - [webpack.Progress] 67% building 1305/1351 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/rectToClientRect.js - [webpack.Progress] 67% building 1305/1352 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/character-entities-legacy/index.json - [webpack.Progress] 67% building 1306/1352 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/character-entities-legacy/index.json - [webpack.Progress] 68% building 1307/1352 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/character-entities-legacy/index.json - [webpack.Progress] 68% building 1308/1352 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/character-entities-legacy/index.json - [webpack.Progress] 68% building 1309/1352 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/character-entities-legacy/index.json - [webpack.Progress] 68% building 1310/1352 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/character-entities-legacy/index.json - [webpack.Progress] 68% building 1310/1353 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/computeOffsets.js - [webpack.Progress] 68% building 1311/1353 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/computeOffsets.js - [webpack.Progress] 68% building 1311/1354 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/componentTypes.js - [webpack.Progress] 68% building 1312/1354 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/componentTypes.js - [webpack.Progress] 68% building 1313/1354 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/componentTypes.js - [webpack.Progress] 68% building 1314/1354 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/componentTypes.js - [webpack.Progress] 68% building 1315/1354 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/lib/componentTypes.js - [webpack.Progress] 68% building 1315/1355 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js - [webpack.Progress] 68% building 1316/1355 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js - [webpack.Progress] 68% building 1317/1355 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js - [webpack.Progress] 68% building 1318/1355 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js - [webpack.Progress] 68% building 1319/1355 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getOppositePlacement.js - [webpack.Progress] 68% building 1319/1356 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/within.js - [webpack.Progress] 68% building 1319/1357 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js - [webpack.Progress] 68% building 1320/1357 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js - [webpack.Progress] 68% building 1320/1358 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooksDummyComponents/UseEventListener.jsx - [webpack.Progress] 68% building 1320/1359 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/decode_codepoint.js - [webpack.Progress] 68% building 1320/1360 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooksDummyComponents/UseClickOutSide.jsx - [webpack.Progress] 68% building 1321/1360 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooksDummyComponents/UseClickOutSide.jsx - [webpack.Progress] 68% building 1321/1361 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getParentNode.js - [webpack.Progress] 68% building 1321/1362 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/src/constants/colors.json - [webpack.Progress] 68% building 1321/1363 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js - [webpack.Progress] 68% building 1322/1363 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js - [webpack.Progress] 68% building 1323/1363 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/isTableElement.js - [webpack.Progress] 68% building 1323/1364 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js - [webpack.Progress] 68% building 1323/1365 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/contains.js - [webpack.Progress] 68% building 1323/1366 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/incr32.js - [webpack.Progress] 68% building 1323/1367 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/GlobalSettingGeneralComponent.scss - [webpack.Progress] 68% building 1324/1367 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/incr32.js - [webpack.Progress] 68% building 1324/1368 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/GlobalSettingGeneralComponent.scss - [webpack.Progress] 68% building 1325/1368 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/GlobalSettingGeneralComponent.scss - [webpack.Progress] 68% building 1326/1368 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/GlobalSettingGeneralComponent.scss - [webpack.Progress] 68% building 1326/1369 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/SpacingComponent.scss - [webpack.Progress] 68% building 1327/1369 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/GlobalSettingGeneralComponent.scss - [webpack.Progress] 68% building 1327/1370 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/general-stories/global-design/SpacingComponent.scss - [webpack.Progress] 68% building 1327/1371 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonFunctionValue.js - [webpack.Progress] 68% building 1327/1372 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonArray.js - [webpack.Progress] 67% building 1327/1373 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js - [webpack.Progress] 68% building 1328/1373 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonObject.js - [webpack.Progress] 67% building 1328/1374 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonValue.js - [webpack.Progress] 68% building 1329/1374 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonValue.js - [webpack.Progress] 67% building 1329/1375 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.jsx - [webpack.Progress] 68% building 1330/1375 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.jsx - [webpack.Progress] 68% building 1331/1375 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.jsx - [webpack.Progress] 68% building 1331/1376 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/principles/principles.jsx - [webpack.Progress] 67% building 1331/1377 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.jsx - [webpack.Progress] 67% building 1331/1378 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/intro/intro.jsx - [webpack.Progress] 67% building 1331/1379 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 67% building 1332/1379 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 67% building 1333/1379 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1334/1379 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1335/1379 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1336/1379 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1337/1379 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1338/1379 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1339/1379 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1340/1379 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1341/1379 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1342/1379 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1343/1379 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1344/1379 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1345/1379 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1346/1379 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1347/1379 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.jsx - [webpack.Progress] 68% building 1347/1380 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Activity.js - [webpack.Progress] 68% building 1347/1381 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarContent.scss - [webpack.Progress] 68% building 1348/1381 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Activity.js - [webpack.Progress] 68% building 1348/1382 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarContent.scss - [webpack.Progress] 68% building 1348/1383 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/character-reference-invalid/index.json - [webpack.Progress] 68% building 1349/1383 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/character-reference-invalid/index.json - [webpack.Progress] 68% building 1349/1384 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarBadge.scss - [webpack.Progress] 68% building 1350/1384 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/character-reference-invalid/index.json - [webpack.Progress] 68% building 1350/1385 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/AvatarBadge.scss - [webpack.Progress] 68% building 1350/1386 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function-bind/index.js - [webpack.Progress] 68% building 1350/1387 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-alphanumerical/index.js - [webpack.Progress] 68% building 1351/1387 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-alphanumerical/index.js - [webpack.Progress] 68% building 1352/1387 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-alphanumerical/index.js - [webpack.Progress] 68% building 1352/1388 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-hexadecimal/index.js - [webpack.Progress] 68% building 1352/1389 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Workspace.js - [webpack.Progress] 68% building 1352/1390 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Work.js - [webpack.Progress] 68% building 1353/1390 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Work.js - [webpack.Progress] 68% building 1354/1390 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Work.js - [webpack.Progress] 68% building 1354/1391 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Widgets.js - [webpack.Progress] 68% building 1354/1392 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/index.js - [webpack.Progress] 68% building 1354/1393 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/WhatsNew.js - [webpack.Progress] 68% building 1354/1394 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Wand.js - [webpack.Progress] 68% building 1355/1394 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Wand.js - [webpack.Progress] 68% building 1355/1395 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-decimal/index.js - [webpack.Progress] 68% building 1355/1396 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Video.js - [webpack.Progress] 68% building 1355/1397 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Versioning.js - [webpack.Progress] 68% building 1356/1397 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Versioning.js - [webpack.Progress] 68% building 1357/1397 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Versioning.js - [webpack.Progress] 68% building 1357/1398 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Upload.js - [webpack.Progress] 68% building 1358/1398 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Upload.js - [webpack.Progress] 68% building 1359/1398 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Upload.js - [webpack.Progress] 68% building 1359/1399 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Upgrade.js - [webpack.Progress] 68% building 1359/1400 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Update.js - [webpack.Progress] 68% building 1360/1400 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Update.js - [webpack.Progress] 68% building 1360/1401 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Unlocked.js - [webpack.Progress] 68% building 1360/1402 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Undo.js - [webpack.Progress] 68% building 1361/1402 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Undo.js - [webpack.Progress] 68% building 1361/1403 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Underline.js - [webpack.Progress] 68% building 1361/1404 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/TurnInto.js - [webpack.Progress] 68% building 1362/1404 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/TurnInto.js - [webpack.Progress] 68% building 1363/1404 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/TurnInto.js - [webpack.Progress] 68% building 1363/1405 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Time.js - [webpack.Progress] 68% building 1364/1405 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Time.js - [webpack.Progress] 68% building 1364/1406 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js - [webpack.Progress] 68% building 1365/1406 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getFreshSideObject.js - [webpack.Progress] 68% building 1365/1407 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/TextSmall.js - [webpack.Progress] 68% building 1365/1408 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/ThumbsUp.js - [webpack.Progress] 68% building 1365/1409 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/TextHuge.js - [webpack.Progress] 68% building 1365/1410 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/TextCopy.js - [webpack.Progress] 68% building 1365/1411 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/TextColorIndicator.js - [webpack.Progress] 68% building 1365/1412 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Textcolor.js - [webpack.Progress] 67% building 1365/1413 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/TextBig.js - [webpack.Progress] 67% building 1365/1414 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Text.js - [webpack.Progress] 67% building 1365/1415 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Team.js - [webpack.Progress] 67% building 1365/1416 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getVariation.js - [webpack.Progress] 67% building 1365/1417 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Table.js - [webpack.Progress] 67% building 1365/1418 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Switch.js - [webpack.Progress] 67% building 1365/1419 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Sun.js - [webpack.Progress] 67% building 1365/1420 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Subitems.js - [webpack.Progress] 67% building 1365/1421 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/StrikethroughT.js - [webpack.Progress] 67% building 1366/1421 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/StrikethroughT.js - [webpack.Progress] 67% building 1366/1422 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/StrikethroughS.js - [webpack.Progress] 67% building 1367/1422 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/StrikethroughS.js - [webpack.Progress] 67% building 1367/1423 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/entities/lib/maps/decode.json - [webpack.Progress] 67% building 1367/1424 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Status.js - [webpack.Progress] 67% building 1368/1424 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Status.js - [webpack.Progress] 67% building 1369/1424 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Status.js - [webpack.Progress] 67% building 1369/1425 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js - [webpack.Progress] 67% building 1369/1426 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Sound.js - [webpack.Progress] 67% building 1370/1426 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Sound.js - [webpack.Progress] 67% building 1370/1427 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Sort.js - [webpack.Progress] 67% building 1371/1427 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Sort.js - [webpack.Progress] 67% building 1371/1428 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Shredder.js - [webpack.Progress] 67% building 1371/1429 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Show.js - [webpack.Progress] 67% building 1371/1430 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/ShortText.js - [webpack.Progress] 67% building 1371/1431 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Share.js - [webpack.Progress] 67% building 1371/1432 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/SettingsKnobs.js - [webpack.Progress] 67% building 1371/1433 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Settings.js - [webpack.Progress] 67% building 1371/1434 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Send.js - [webpack.Progress] 67% building 1372/1434 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Send.js - [webpack.Progress] 67% building 1372/1435 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Security.js - [webpack.Progress] 67% building 1372/1436 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Robot.js - [webpack.Progress] 67% building 1372/1437 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Retry.js - [webpack.Progress] 67% building 1372/1438 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Replay.js - [webpack.Progress] 67% building 1373/1438 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Replay.js - [webpack.Progress] 67% building 1373/1439 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Redo.js - [webpack.Progress] 67% building 1374/1439 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Redo.js - [webpack.Progress] 67% building 1374/1440 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Recurring.js - [webpack.Progress] 67% building 1374/1441 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Radio.js - [webpack.Progress] 67% building 1374/1442 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Quote.js - [webpack.Progress] 67% building 1375/1442 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Quote.js - [webpack.Progress] 67% building 1375/1443 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/PushNotification.js - [webpack.Progress] 67% building 1375/1444 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Print.js - [webpack.Progress] 67% building 1375/1445 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Play.js - [webpack.Progress] 67% building 1375/1446 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Person.js - [webpack.Progress] 67% building 1375/1447 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Pin.js - [webpack.Progress] 66% building 1375/1448 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Pause.js - [webpack.Progress] 67% building 1376/1448 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Pause.js - [webpack.Progress] 67% building 1377/1448 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Pause.js - [webpack.Progress] 67% building 1378/1448 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Pause.js - [webpack.Progress] 67% building 1379/1448 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Pause.js - [webpack.Progress] 67% building 1379/1449 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Paste.js - [webpack.Progress] 67% building 1379/1450 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Page.js - [webpack.Progress] 67% building 1379/1451 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Open.js - [webpack.Progress] 66% building 1379/1452 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Numbers.js - [webpack.Progress] 66% building 1379/1453 modules 74 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Notifications.js - [webpack.Progress] 66% building 1380/1453 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Notifications.js - [webpack.Progress] 67% building 1381/1453 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Notifications.js - [webpack.Progress] 67% building 1382/1453 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Notifications.js - [webpack.Progress] 67% building 1383/1453 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Notifications.js - [webpack.Progress] 67% building 1384/1453 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Notifications.js - [webpack.Progress] 67% building 1385/1453 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Notifications.js - [webpack.Progress] 67% building 1386/1453 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Notifications.js - [webpack.Progress] 67% building 1387/1453 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Notifications.js - [webpack.Progress] 67% building 1387/1454 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/index.js - [webpack.Progress] 67% building 1387/1455 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js - [webpack.Progress] 67% building 1387/1456 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextField.scss - [webpack.Progress] 67% building 1388/1456 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/@storybook/components/dist/esm/controls/react-editable-json-tree/components/JsonAddValue.js - [webpack.Progress] 67% building 1388/1457 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextField.scss - [webpack.Progress] 67% building 1389/1457 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextField.scss - [webpack.Progress] 67% building 1389/1458 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextFieldConstants.js - [webpack.Progress] 67% building 1389/1459 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.scss - [webpack.Progress] 67% building 1390/1459 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextFieldConstants.js - [webpack.Progress] 67% building 1390/1460 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.scss - [webpack.Progress] 67% building 1390/1461 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/principles/principles.scss - [webpack.Progress] 67% building 1391/1461 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/welcome-header/welcome-header.scss - [webpack.Progress] 67% building 1391/1462 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/principles/principles.scss - [webpack.Progress] 67% building 1391/1463 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.scss - [webpack.Progress] 67% building 1392/1463 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/principles/principles.scss - [webpack.Progress] 67% building 1392/1464 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.scss - [webpack.Progress] 67% building 1392/1465 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.scss - [webpack.Progress] 67% building 1393/1465 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/contributors/contributors.scss - [webpack.Progress] 67% building 1393/1466 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.scss - [webpack.Progress] 67% building 1394/1466 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.scss - [webpack.Progress] 67% building 1394/1467 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/intro/intro.scss - [webpack.Progress] 67% building 1395/1467 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/abilities-description/abilities-description.scss - [webpack.Progress] 67% building 1395/1468 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/intro/intro.scss - [webpack.Progress] 67% building 1396/1468 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/intro/intro.scss - [webpack.Progress] 67% building 1397/1468 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/intro/intro.scss - [webpack.Progress] 67% building 1398/1468 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/intro/intro.scss - [webpack.Progress] 67% building 1399/1468 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/intro/intro.scss - [webpack.Progress] 67% building 1400/1468 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/intro/intro.scss - [webpack.Progress] 67% building 1401/1468 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/intro/intro.scss - [webpack.Progress] 67% building 1401/1469 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function-bind/implementation.js - [webpack.Progress] 67% building 1402/1469 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function-bind/implementation.js - [webpack.Progress] 67% building 1403/1469 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function-bind/implementation.js - [webpack.Progress] 67% building 1404/1469 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function-bind/implementation.js - [webpack.Progress] 67% building 1404/1470 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/index.js - [webpack.Progress] 67% building 1405/1470 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/index.js - [webpack.Progress] 67% building 1406/1470 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/index.js - [webpack.Progress] 67% building 1407/1470 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/index.js - [webpack.Progress] 67% building 1408/1470 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/index.js - [webpack.Progress] 67% building 1408/1471 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/ecb.js - [webpack.Progress] 67% building 1408/1472 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/ctr.js - [webpack.Progress] 67% building 1409/1472 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/ctr.js - [webpack.Progress] 67% building 1409/1473 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/ofb.js - [webpack.Progress] 67% building 1409/1474 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1410/1474 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1411/1474 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1412/1474 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1413/1474 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1414/1474 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1415/1474 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1416/1474 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1417/1474 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1418/1474 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb1.js - [webpack.Progress] 67% building 1418/1475 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextFieldHelpers.js - [webpack.Progress] 67% building 1419/1475 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/TextField/TextFieldHelpers.js - [webpack.Progress] 67% building 1419/1476 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb8.js - [webpack.Progress] 67% building 1420/1476 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb8.js - [webpack.Progress] 67% building 1420/1477 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.jsx - [webpack.Progress] 67% building 1421/1477 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.jsx - [webpack.Progress] 67% building 1422/1477 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.jsx - [webpack.Progress] 67% building 1423/1477 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.jsx - [webpack.Progress] 67% building 1424/1477 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.jsx - [webpack.Progress] 67% building 1425/1477 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.jsx - [webpack.Progress] 67% building 1425/1478 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cfb.js - [webpack.Progress] 67% building 1425/1479 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/index.js - [webpack.Progress] 67% building 1425/1480 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/modes/cbc.js - [webpack.Progress] 67% building 1425/1481 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useDebounceEvent.js - [webpack.Progress] 67% building 1426/1481 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useDebounceEvent.js - [webpack.Progress] 67% building 1427/1481 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useDebounceEvent.js - [webpack.Progress] 67% building 1428/1481 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useDebounceEvent.js - [webpack.Progress] 67% building 1429/1481 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useDebounceEvent.js - [webpack.Progress] 67% building 1430/1481 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useDebounceEvent.js - [webpack.Progress] 67% building 1430/1482 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/buffer-xor/index.js - [webpack.Progress] 67% building 1431/1482 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/buffer-xor/index.js - [webpack.Progress] 67% building 1431/1483 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 67% building 1432/1483 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 67% building 1433/1483 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1434/1483 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1435/1483 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1436/1483 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1437/1483 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1438/1483 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1439/1483 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1440/1483 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1441/1483 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1442/1483 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1443/1483 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1444/1483 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1445/1483 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1446/1483 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1447/1483 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1448/1483 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1449/1483 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1450/1483 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1451/1483 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1452/1483 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1453/1483 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1454/1483 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1455/1483 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1456/1483 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/builder-webpack4/node_modules/color-name/index.js - [webpack.Progress] 68% building 1456/1484 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Note.js - [webpack.Progress] 68% building 1456/1485 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/index.js - [webpack.Progress] 68% building 1456/1486 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NoColor.js - [webpack.Progress] 68% building 1457/1486 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NoColor.js - [webpack.Progress] 68% building 1458/1486 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NoColor.js - [webpack.Progress] 68% building 1459/1486 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NoColor.js - [webpack.Progress] 68% building 1459/1487 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NewTab.js - [webpack.Progress] 68% building 1459/1488 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NavigationChevronUp.js - [webpack.Progress] 68% building 1460/1488 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NavigationChevronUp.js - [webpack.Progress] 68% building 1461/1488 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NavigationChevronUp.js - [webpack.Progress] 68% building 1462/1488 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NavigationChevronUp.js - [webpack.Progress] 68% building 1462/1489 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NavigationChevronRight.js - [webpack.Progress] 68% building 1462/1490 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NavigationChevronLeft.js - [webpack.Progress] 68% building 1463/1490 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NavigationChevronLeft.js - [webpack.Progress] 68% building 1463/1491 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/NavigationChevronDown.js - [webpack.Progress] 68% building 1463/1492 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/MyWeek.js - [webpack.Progress] 68% building 1463/1493 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Mute.js - [webpack.Progress] 68% building 1464/1493 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Mute.js - [webpack.Progress] 68% building 1464/1494 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/MoveArrowUp.js - [webpack.Progress] 68% building 1464/1495 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/MoveArrowRight.js - [webpack.Progress] 68% building 1464/1496 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/ability-description/ability-description.jsx - [webpack.Progress] 68% building 1465/1496 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/ability-description/ability-description.jsx - [webpack.Progress] 68% building 1466/1496 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/ability-description/ability-description.jsx - [webpack.Progress] 68% building 1467/1496 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/ability-description/ability-description.jsx - [webpack.Progress] 68% building 1467/1497 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/MoveArrowLeft.js - [webpack.Progress] 68% building 1467/1498 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/MoveArrowDown.js - [webpack.Progress] 68% building 1467/1499 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/MoreBelowFilled.js - [webpack.Progress] 68% building 1467/1500 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/MoreBelow.js - [webpack.Progress] 68% building 1467/1501 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/MoreActions.js - [webpack.Progress] 68% building 1467/1502 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Moon.js - [webpack.Progress] 68% building 1467/1503 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/MondayLogoOutline.js - [webpack.Progress] 68% building 1467/1504 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/contributor/contributor.jsx - [webpack.Progress] 68% building 1467/1505 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Mobile.js - [webpack.Progress] 68% building 1468/1505 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Mobile.js - [webpack.Progress] 68% building 1469/1505 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Mobile.js - [webpack.Progress] 68% building 1469/1506 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Minimize.js - [webpack.Progress] 68% building 1469/1507 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Microphone.js - [webpack.Progress] 68% building 1469/1508 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.repeat.js - [webpack.Progress] 68% building 1470/1508 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.string.repeat.js - [webpack.Progress] 68% building 1470/1509 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Menu.js - [webpack.Progress] 68% building 1470/1510 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Mention.js - [webpack.Progress] 68% building 1470/1511 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/principle/principle.jsx - [webpack.Progress] 68% building 1470/1512 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/LongText.js - [webpack.Progress] 68% building 1470/1513 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/LogOut.js - [webpack.Progress] 68% building 1470/1514 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/LogIn.js - [webpack.Progress] 68% building 1470/1515 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Locked.js - [webpack.Progress] 68% building 1471/1515 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Locked.js - [webpack.Progress] 68% building 1471/1516 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Location.js - [webpack.Progress] 68% building 1471/1517 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Link.js - [webpack.Progress] 68% building 1471/1518 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Lines.js - [webpack.Progress] 68% building 1471/1519 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Layout.js - [webpack.Progress] 68% building 1471/1520 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Labs.js - [webpack.Progress] 68% building 1471/1521 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Keyboard.js - [webpack.Progress] 67% building 1471/1522 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Item.js - [webpack.Progress] 67% building 1471/1523 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Italic.js - [webpack.Progress] 67% building 1471/1524 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/IPRestrictions.js - [webpack.Progress] 67% building 1471/1525 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Invite.js - [webpack.Progress] 67% building 1471/1526 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Integrations.js - [webpack.Progress] 67% building 1471/1527 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Inbox.js - [webpack.Progress] 67% building 1472/1527 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Inbox.js - [webpack.Progress] 67% building 1472/1528 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Image.js - [webpack.Progress] 67% building 1472/1529 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Home.js - [webpack.Progress] 67% building 1472/1530 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/HighlightColorBucket.js - [webpack.Progress] 67% building 1472/1531 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Highlight.js - [webpack.Progress] 67% building 1472/1532 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Hide.js - [webpack.Progress] 67% building 1472/1533 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Help.js - [webpack.Progress] 67% building 1472/1534 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Health.js - [webpack.Progress] 67% building 1472/1535 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Guest.js - [webpack.Progress] 67% building 1472/1536 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Group.js - [webpack.Progress] 67% building 1472/1537 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Graph.js - [webpack.Progress] 67% building 1472/1538 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Globe.js - [webpack.Progress] 67% building 1472/1539 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Gif.js - [webpack.Progress] 67% building 1472/1540 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/registerKnobs.js - [webpack.Progress] 67% building 1473/1540 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/registerKnobs.js - [webpack.Progress] 67% building 1474/1540 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/registerKnobs.js - [webpack.Progress] 67% building 1474/1541 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/shared.js - [webpack.Progress] 67% building 1474/1542 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Gantt.js - [webpack.Progress] 67% building 1474/1543 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/FullscreenClose.js - [webpack.Progress] 67% building 1474/1544 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Gallery.js - [webpack.Progress] 67% building 1475/1544 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Gallery.js - [webpack.Progress] 67% building 1476/1544 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Gallery.js - [webpack.Progress] 67% building 1476/1545 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Fullscreen.js - [webpack.Progress] 67% building 1476/1546 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Folder.js - [webpack.Progress] 67% building 1476/1547 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Filter.js - [webpack.Progress] 67% building 1476/1548 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/File.js - [webpack.Progress] 67% building 1476/1549 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/lib/react-markdown.js - [webpack.Progress] 67% building 1476/1550 modules 74 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/lib/uri-transformer.js - [webpack.Progress] 67% building 1476/1551 modules 75 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Feedback.js - [webpack.Progress] 67% building 1476/1552 modules 76 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Featured.js - [webpack.Progress] 67% building 1476/1553 modules 77 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Favorite.js - [webpack.Progress] 66% building 1476/1554 modules 78 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/ExternalPage.js - [webpack.Progress] 66% building 1476/1555 modules 79 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Expand.js - [webpack.Progress] 66% building 1477/1555 modules 78 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Expand.js - [webpack.Progress] 66% building 1477/1556 modules 79 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Event.js - [webpack.Progress] 66% building 1477/1557 modules 80 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Enter.js - [webpack.Progress] 66% building 1477/1558 modules 81 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Emoji.js - [webpack.Progress] 66% building 1478/1558 modules 80 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Emoji.js - [webpack.Progress] 66% building 1478/1559 modules 81 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Embed.js - [webpack.Progress] 66% building 1479/1559 modules 80 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Embed.js - [webpack.Progress] 66% building 1479/1560 modules 81 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Email.js - [webpack.Progress] 66% building 1479/1561 modules 82 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Edit.js - [webpack.Progress] 66% building 1479/1562 modules 83 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.get-own-property-names.js - [webpack.Progress] 66% building 1479/1563 modules 84 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.scss - [webpack.Progress] 66% building 1480/1563 modules 83 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.get-own-property-names.js - [webpack.Progress] 66% building 1480/1564 modules 84 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.scss - [webpack.Progress] 66% building 1481/1564 modules 83 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.scss - [webpack.Progress] 66% building 1482/1564 modules 82 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.scss - [webpack.Progress] 66% building 1483/1564 modules 81 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.scss - [webpack.Progress] 66% building 1484/1564 modules 80 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/FieldLabel/FieldLabel.scss - [webpack.Progress] 66% building 1484/1565 modules 81 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 66% building 1485/1565 modules 80 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 66% building 1486/1565 modules 79 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1487/1565 modules 78 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1488/1565 modules 77 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1489/1565 modules 76 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1490/1565 modules 75 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1491/1565 modules 74 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1492/1565 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1493/1565 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1494/1565 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1495/1565 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-select-icons/story-select-icons.js - [webpack.Progress] 67% building 1495/1566 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/constants.js - [webpack.Progress] 67% building 1495/1567 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1496/1567 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1497/1567 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1498/1567 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1499/1567 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1500/1567 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1501/1567 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1502/1567 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1503/1567 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1504/1567 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1505/1567 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1506/1567 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1507/1567 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1508/1567 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1509/1567 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1510/1567 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1511/1567 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1512/1567 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1513/1567 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1514/1567 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.jsx - [webpack.Progress] 67% building 1514/1568 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/button/dist/module.js - [webpack.Progress] 67% building 1515/1568 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/button/dist/module.js - [webpack.Progress] 67% building 1515/1569 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/ability-description/ability-description.scss - [webpack.Progress] 67% building 1516/1569 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@react-aria/button/dist/module.js - [webpack.Progress] 67% building 1516/1570 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/ability-description/ability-description.scss - [webpack.Progress] 67% building 1516/1571 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/lib/rehype-filter.js - [webpack.Progress] 67% building 1516/1572 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/lib/ast-to-react.js - [webpack.Progress] 67% building 1517/1572 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/lib/ast-to-react.js - [webpack.Progress] 67% building 1518/1572 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/lib/ast-to-react.js - [webpack.Progress] 67% building 1519/1572 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/lib/ast-to-react.js - [webpack.Progress] 67% building 1519/1573 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/contributor/contributor.scss - [webpack.Progress] 67% building 1520/1573 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/lib/ast-to-react.js - [webpack.Progress] 67% building 1520/1574 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/contributor/contributor.scss - [webpack.Progress] 67% building 1521/1574 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/contributor/contributor.scss - [webpack.Progress] 68% building 1522/1574 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/contributor/contributor.scss - [webpack.Progress] 67% building 1522/1575 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1523/1575 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1524/1575 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1525/1575 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1526/1575 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1527/1575 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1528/1575 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1529/1575 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1530/1575 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1531/1575 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1532/1575 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1533/1575 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1534/1575 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1535/1575 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1536/1575 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1537/1575 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1538/1575 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1538/1576 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/principle/principle.scss - [webpack.Progress] 68% building 1539/1576 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/index.js - [webpack.Progress] 68% building 1539/1577 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/principle/principle.scss - [webpack.Progress] 68% building 1540/1577 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/principle/principle.scss - [webpack.Progress] 68% building 1540/1578 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/Divider/Divider.jsx - [webpack.Progress] 68% building 1540/1579 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.jsx - [webpack.Progress] 68% building 1541/1579 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.jsx - [webpack.Progress] 68% building 1541/1580 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-alphabetical/index.js - [webpack.Progress] 68% building 1542/1580 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-alphabetical/index.js - [webpack.Progress] 68% building 1543/1580 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-alphabetical/index.js - [webpack.Progress] 68% building 1544/1580 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-alphabetical/index.js - [webpack.Progress] 68% building 1544/1581 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/has/src/index.js - [webpack.Progress] 68% building 1544/1582 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Duplicate.js - [webpack.Progress] 68% building 1544/1583 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1545/1583 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1546/1583 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1547/1583 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1548/1583 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1549/1583 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1550/1583 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1551/1583 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1552/1583 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1553/1583 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1554/1583 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1555/1583 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1556/1583 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 69% building 1557/1583 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DueDate.js - [webpack.Progress] 68% building 1557/1584 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/KnobManager.js - [webpack.Progress] 68% building 1557/1585 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DropdownChevronUp.js - [webpack.Progress] 68% building 1557/1586 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/color-item/color-item.jsx - [webpack.Progress] 68% building 1557/1587 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DropdownChevronRight.js - [webpack.Progress] 68% building 1557/1588 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DropdownChevronLeft.js - [webpack.Progress] 68% building 1557/1589 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Drag.js - [webpack.Progress] 68% building 1558/1589 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Drag.js - [webpack.Progress] 68% building 1559/1589 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Drag.js - [webpack.Progress] 68% building 1559/1590 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-states-row/story-states-row.jsx - [webpack.Progress] 68% building 1560/1590 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-states-row/story-states-row.jsx - [webpack.Progress] 68% building 1560/1591 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Download.js - [webpack.Progress] 68% building 1561/1591 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Download.js - [webpack.Progress] 68% building 1562/1591 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Download.js - [webpack.Progress] 68% building 1562/1592 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DoubleCheck.js - [webpack.Progress] 68% building 1562/1593 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DocTemplate.js - [webpack.Progress] 68% building 1562/1594 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DocPrivate.js - [webpack.Progress] 68% building 1562/1595 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DocShareable.js - [webpack.Progress] 68% building 1562/1596 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Doc.js - [webpack.Progress] 68% building 1562/1597 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Divider.js - [webpack.Progress] 68% building 1562/1598 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DisabledUser.js - [webpack.Progress] 68% building 1563/1598 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DisabledUser.js - [webpack.Progress] 68% building 1563/1599 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Dependency.js - [webpack.Progress] 68% building 1563/1600 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Delete.js - [webpack.Progress] 68% building 1564/1600 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Delete.js - [webpack.Progress] 68% building 1565/1600 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Delete.js - [webpack.Progress] 68% building 1565/1601 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/DashboardPrivate.js - [webpack.Progress] 68% building 1565/1602 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/person2.png - [webpack.Progress] 68% building 1565/1603 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Dashboard.js - [webpack.Progress] 68% building 1565/1604 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/person1.png - [webpack.Progress] 68% building 1565/1605 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Cut.js - [webpack.Progress] 68% building 1565/1606 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Custom.js - [webpack.Progress] 68% building 1566/1606 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Custom.js - [webpack.Progress] 68% building 1567/1606 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Custom.js - [webpack.Progress] 68% building 1568/1606 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Custom.js - [webpack.Progress] 68% building 1568/1607 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/CreditCard.js - [webpack.Progress] 68% building 1568/1608 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Counter.js - [webpack.Progress] 68% building 1568/1609 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/ConvertToSubitem.js - [webpack.Progress] 68% building 1568/1610 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-names-external.js - [webpack.Progress] 68% building 1569/1610 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-get-own-property-names-external.js - [webpack.Progress] 68% building 1569/1611 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/ConvertToItem.js - [webpack.Progress] 68% building 1569/1612 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js - [webpack.Progress] 68% building 1569/1613 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js - [webpack.Progress] 68% building 1569/1614 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Completed.js - [webpack.Progress] 68% building 1569/1615 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Comment.js - [webpack.Progress] 68% building 1569/1616 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Column.js - [webpack.Progress] 68% building 1569/1617 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/CollapseRound.js - [webpack.Progress] 68% building 1569/1618 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Collapse.js - [webpack.Progress] 68% building 1569/1619 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Code.js - [webpack.Progress] 68% building 1569/1620 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/CloseRound.js - [webpack.Progress] 68% building 1569/1621 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Close.js - [webpack.Progress] 68% building 1569/1622 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Clear.js - [webpack.Progress] 68% building 1569/1623 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/CheckList.js - [webpack.Progress] 67% building 1569/1624 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Chart.js - [webpack.Progress] 67% building 1569/1625 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Checkbox.js - [webpack.Progress] 67% building 1570/1625 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Checkbox.js - [webpack.Progress] 67% building 1570/1626 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Calendar.js - [webpack.Progress] 67% building 1570/1627 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Bulllet.js - [webpack.Progress] 67% building 1570/1628 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Bullets.js - [webpack.Progress] 67% building 1570/1629 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/minus.svg - [webpack.Progress] 67% building 1570/1630 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Bullet.js - [webpack.Progress] 67% building 1570/1631 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Bug.js - [webpack.Progress] 67% building 1571/1631 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Bug.js - [webpack.Progress] 67% building 1571/1632 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Broom.js - [webpack.Progress] 67% building 1571/1633 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Broadcast.js - [webpack.Progress] 67% building 1571/1634 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Bookmark.js - [webpack.Progress] 67% building 1571/1635 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Bolt.js - [webpack.Progress] 67% building 1571/1636 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Bold.js - [webpack.Progress] 67% building 1572/1636 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Bold.js - [webpack.Progress] 67% building 1572/1637 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Avatar/__stories__/assets/guest.svg - [webpack.Progress] 67% building 1572/1638 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/BoardTemplate.js - [webpack.Progress] 67% building 1573/1638 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/BoardTemplate.js - [webpack.Progress] 67% building 1573/1639 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/BoardShareable.js - [webpack.Progress] 67% building 1573/1640 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/BoardPrivate.js - [webpack.Progress] 67% building 1573/1641 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Board.js - [webpack.Progress] 67% building 1573/1642 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/BlockQuote.js - [webpack.Progress] 67% building 1574/1642 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/BlockQuote.js - [webpack.Progress] 67% building 1574/1643 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js - [webpack.Progress] 67% building 1574/1644 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/utils/getAltAxis.js - [webpack.Progress] 67% building 1574/1645 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Basic.js - [webpack.Progress] 67% building 1574/1646 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Battery.js - [webpack.Progress] 67% building 1574/1647 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Attach.js - [webpack.Progress] 67% building 1574/1648 modules 74 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Archive.js - [webpack.Progress] 67% building 1574/1649 modules 75 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Apps.js - [webpack.Progress] 67% building 1574/1650 modules 76 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/API.js - [webpack.Progress] 67% building 1574/1651 modules 77 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Announcement.js - [webpack.Progress] 67% building 1574/1652 modules 78 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/AddUpdate.js - [webpack.Progress] 67% building 1574/1653 modules 79 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js - [webpack.Progress] 67% building 1574/1654 modules 80 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Add.js - [webpack.Progress] 67% building 1575/1654 modules 79 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Add.js - [webpack.Progress] 67% building 1576/1654 modules 78 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Add.js - [webpack.Progress] 67% building 1576/1655 modules 79 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1577/1655 modules 78 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/Icon/Icons/components/Add.js - [webpack.Progress] 67% building 1577/1656 modules 79 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1578/1656 modules 78 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1579/1656 modules 77 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1580/1656 modules 76 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1581/1656 modules 75 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1582/1656 modules 74 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1583/1656 modules 73 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1584/1656 modules 72 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1585/1656 modules 71 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1586/1656 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1587/1656 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/story-state-column/story-state-column.scss - [webpack.Progress] 67% building 1587/1657 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/clarity.png - [webpack.Progress] 67% building 1588/1657 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/clarity.png - [webpack.Progress] 67% building 1589/1657 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/clarity.png - [webpack.Progress] 67% building 1589/1658 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/foundations.png - [webpack.Progress] 67% building 1589/1659 modules 70 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js - [webpack.Progress] 67% building 1590/1659 modules 69 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js - [webpack.Progress] 67% building 1591/1659 modules 68 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js - [webpack.Progress] 67% building 1592/1659 modules 67 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js - [webpack.Progress] 67% building 1593/1659 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js - [webpack.Progress] 67% building 1594/1659 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js - [webpack.Progress] 67% building 1594/1660 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/components.png - [webpack.Progress] 67% building 1595/1660 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/components.png - [webpack.Progress] 67% building 1596/1660 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/components.png - [webpack.Progress] 67% building 1596/1661 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/Divider/Divider.scss - [webpack.Progress] 67% building 1597/1661 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/components.png - [webpack.Progress] 67% building 1597/1662 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/Divider/Divider.scss - [webpack.Progress] 67% building 1597/1663 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1598/1663 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/Divider/Divider.scss - [webpack.Progress] 67% building 1598/1664 modules 66 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1599/1664 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1600/1664 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1601/1664 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1602/1664 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1603/1664 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1604/1664 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1605/1664 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1606/1664 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/flex-layout/flex-layout.scss - [webpack.Progress] 67% building 1606/1665 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/converters.js - [webpack.Progress] 67% building 1607/1665 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/converters.js - [webpack.Progress] 67% building 1607/1666 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-knobs/dist/KnobStore.js - [webpack.Progress] 67% building 1607/1667 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/getting-started.png - [webpack.Progress] 67% building 1608/1667 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/getting-started.png - [webpack.Progress] 67% building 1609/1667 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/getting-started.png - [webpack.Progress] 67% building 1610/1667 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/getting-started.png - [webpack.Progress] 67% building 1611/1667 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/getting-started.png - [webpack.Progress] 67% building 1611/1668 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/header-banner.png - [webpack.Progress] 67% building 1611/1669 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js - [webpack.Progress] 67% building 1612/1669 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js - [webpack.Progress] 67% building 1613/1669 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js - [webpack.Progress] 67% building 1613/1670 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/path.png - [webpack.Progress] 67% building 1613/1671 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/color-item/color-item.scss - [webpack.Progress] 67% building 1614/1671 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/path.png - [webpack.Progress] 67% building 1614/1672 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/color-item/color-item.scss - [webpack.Progress] 67% building 1615/1672 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/color-item/color-item.scss - [webpack.Progress] 67% building 1615/1673 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js - [webpack.Progress] 67% building 1615/1674 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/speed.png - [webpack.Progress] 67% building 1615/1675 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/Sahar.png - [webpack.Progress] 67% building 1616/1675 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/Sahar.png - [webpack.Progress] 67% building 1616/1676 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/Rotem.png - [webpack.Progress] 67% building 1616/1677 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/Moshe.png - [webpack.Progress] 67% building 1616/1678 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/Orr.png - [webpack.Progress] 67% building 1617/1678 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/Orr.png - [webpack.Progress] 67% building 1617/1679 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js - [webpack.Progress] 67% building 1617/1680 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/Hadas.png - [webpack.Progress] 67% building 1617/1681 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/Evgeniy.png - [webpack.Progress] 67% building 1618/1681 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/Evgeniy.png - [webpack.Progress] 67% building 1618/1682 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/file-loader/dist/cjs.js??ref--12!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/stand-alone-documentaion/welcome/assets/delight.png - [webpack.Progress] 67% building 1618/1683 modules 65 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 67% building 1619/1683 modules 64 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 67% building 1620/1683 modules 63 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 67% building 1621/1683 modules 62 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 67% building 1622/1683 modules 61 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 67% building 1623/1683 modules 60 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 67% building 1624/1683 modules 59 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 67% building 1625/1683 modules 58 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 67% building 1626/1683 modules 57 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1627/1683 modules 56 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1628/1683 modules 55 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1629/1683 modules 54 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1630/1683 modules 53 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1631/1683 modules 52 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1632/1683 modules 51 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1633/1683 modules 50 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1634/1683 modules 49 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1635/1683 modules 48 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1636/1683 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1637/1683 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1638/1683 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1639/1683 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1640/1683 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1641/1683 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1642/1683 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/hooks/useTimeout.js - [webpack.Progress] 68% building 1642/1684 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/ghash.js - [webpack.Progress] 68% building 1643/1684 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-aes/ghash.js - [webpack.Progress] 68% building 1643/1685 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/preview/index.js - [webpack.Progress] 68% building 1643/1686 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.jsx - [webpack.Progress] 68% building 1643/1687 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1644/1687 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1645/1687 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1646/1687 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1647/1687 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1648/1687 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1649/1687 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1650/1687 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1651/1687 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1652/1687 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1653/1687 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1654/1687 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1655/1687 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1656/1687 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1657/1687 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 68% building 1658/1687 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 69% building 1659/1687 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 69% building 1660/1687 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 69% building 1661/1687 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 69% building 1662/1687 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 69% building 1663/1687 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/index.js - [webpack.Progress] 69% building 1663/1688 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1664/1688 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1665/1688 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1666/1688 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1667/1688 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1668/1688 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1669/1688 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1670/1688 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1671/1688 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1672/1688 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/monday-ui-style/src/Icons/iconsMetaData.js - [webpack.Progress] 69% building 1672/1689 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1673/1689 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1674/1689 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1675/1689 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1676/1689 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1677/1689 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1678/1689 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1679/1689 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1680/1689 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1681/1689 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1682/1689 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js - [webpack.Progress] 69% building 1682/1690 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2015.js - [webpack.Progress] 69% building 1682/1691 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es5-shim/es5-sham.js - [webpack.Progress] 69% building 1682/1692 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-for-each.js - [webpack.Progress] 69% building 1682/1693 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/extractDocgenProps.js - [webpack.Progress] 69% building 1682/1694 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/dom-iterables.js - [webpack.Progress] 69% building 1682/1695 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addons/dist/esm/hooks.js - [webpack.Progress] 69% building 1682/1696 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addons/dist/esm/storybook-channel-mock.js - [webpack.Progress] 69% building 1682/1697 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addons/dist/esm/make-decorator.js - [webpack.Progress] 69% building 1682/1698 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/types.js - [webpack.Progress] 69% building 1683/1698 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/types.js - [webpack.Progress] 69% building 1683/1699 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Wrapper.js - [webpack.Progress] 69% building 1683/1700 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Title.js - [webpack.Progress] 69% building 1683/1701 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Subheading.js - [webpack.Progress] 69% building 1683/1702 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Stories.js - [webpack.Progress] 69% building 1683/1703 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Story.js - [webpack.Progress] 69% building 1683/1704 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/SourceContainer.js - [webpack.Progress] 69% building 1683/1705 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Subtitle.js - [webpack.Progress] 69% building 1683/1706 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Source.js - [webpack.Progress] 69% building 1683/1707 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Props.js - [webpack.Progress] 69% building 1683/1708 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Primary.js - [webpack.Progress] 69% building 1683/1709 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Preview.js - [webpack.Progress] 69% building 1683/1710 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Meta.js - [webpack.Progress] 69% building 1683/1711 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Heading.js - [webpack.Progress] 68% building 1683/1712 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsStory.js - [webpack.Progress] 68% building 1683/1713 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Canvas.js - [webpack.Progress] 68% building 1683/1714 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Description.js - [webpack.Progress] 68% building 1683/1715 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsContainer.js - [webpack.Progress] 68% building 1683/1716 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/ArgsTable.js - [webpack.Progress] 68% building 1683/1717 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/DocsPage.js - [webpack.Progress] 68% building 1683/1718 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/Anchor.js - [webpack.Progress] 68% building 1683/1719 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/promise-resolve.js - [webpack.Progress] 68% building 1683/1720 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/remark-rehype/index.js - [webpack.Progress] 68% building 1683/1721 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unified/index.js - [webpack.Progress] 68% building 1683/1722 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/index.js - [webpack.Progress] 68% building 1683/1723 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/remark-parse/index.js - [webpack.Progress] 68% building 1683/1724 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/index.js - [webpack.Progress] 68% building 1683/1725 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/microtask.js - [webpack.Progress] 68% building 1684/1725 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/microtask.js - [webpack.Progress] 68% building 1684/1726 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/native-promise-constructor.js - [webpack.Progress] 68% building 1684/1727 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/array-method-is-strict.js - [webpack.Progress] 68% building 1684/1728 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/object-to-string.js - [webpack.Progress] 68% building 1684/1729 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/algos.js - [webpack.Progress] 68% building 1684/1730 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/queryparams.js - [webpack.Progress] 68% building 1684/1731 modules 47 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/types.js - [webpack.Progress] 68% building 1685/1731 modules 46 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/types.js - [webpack.Progress] 68% building 1686/1731 modules 45 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/types.js - [webpack.Progress] 68% building 1687/1731 modules 44 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/types.js - [webpack.Progress] 68% building 1688/1731 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/types.js - [webpack.Progress] 68% building 1689/1731 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/types.js - [webpack.Progress] 68% building 1690/1731 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/types.js - [webpack.Progress] 68% building 1691/1731 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/types.js - [webpack.Progress] 68% building 1692/1731 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/client-api/dist/esm/types.js - [webpack.Progress] 68% building 1692/1732 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1693/1732 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1694/1732 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1695/1732 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1696/1732 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1697/1732 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1698/1732 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1699/1732 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1700/1732 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1701/1732 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1702/1732 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 68% building 1703/1732 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 69% building 1704/1732 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 69% building 1705/1732 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 69% building 1706/1732 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 69% building 1707/1732 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 69% building 1708/1732 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 69% building 1709/1732 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 69% building 1710/1732 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js??ref--4-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/babel-loader/lib/index.js!/Users/lastexile/code/monday/monday-ui-react-core/src/storybook/components/link-component/link-component.jsx - [webpack.Progress] 69% building 1710/1733 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js - [webpack.Progress] 69% building 1711/1733 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js - [webpack.Progress] 69% building 1712/1733 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/handleProp.js - [webpack.Progress] 69% building 1712/1734 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit/index.js - [webpack.Progress] 69% building 1713/1734 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit/index.js - [webpack.Progress] 69% building 1714/1734 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit/index.js - [webpack.Progress] 69% building 1715/1734 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit/index.js - [webpack.Progress] 69% building 1715/1735 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1716/1735 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1717/1735 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1718/1735 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1719/1735 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1720/1735 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1721/1735 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1722/1735 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1723/1735 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1724/1735 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1725/1735 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-to-object/index.js - [webpack.Progress] 69% building 1725/1736 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/preview/action.js - [webpack.Progress] 69% building 1725/1737 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/preview/actions.js - [webpack.Progress] 69% building 1725/1738 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/preview/configureActions.js - [webpack.Progress] 69% building 1726/1738 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/preview/configureActions.js - [webpack.Progress] 69% building 1726/1739 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/preview/decorateAction.js - [webpack.Progress] 69% building 1726/1740 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/preview/withActions.js - [webpack.Progress] 69% building 1726/1741 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/ActionDisplay.js - [webpack.Progress] 69% building 1726/1742 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/ActionOptions.js - [webpack.Progress] 69% building 1726/1743 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/ActionsMap.js - [webpack.Progress] 69% building 1726/1744 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/DecoratorFunction.js - [webpack.Progress] 69% building 1726/1745 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/HandlerFunction.js - [webpack.Progress] 69% building 1726/1746 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-actions/dist/esm/models/ActionsFunction.js - [webpack.Progress] 69% building 1726/1747 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/comma-separated-tokens/index.js - [webpack.Progress] 69% building 1726/1748 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/space-separated-tokens/index.js - [webpack.Progress] 69% building 1726/1749 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/react-is/index.js - [webpack.Progress] 69% building 1726/1750 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hast-util-whitespace/index.js - [webpack.Progress] 69% building 1727/1750 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hast-util-whitespace/index.js - [webpack.Progress] 69% building 1728/1750 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hast-util-whitespace/index.js - [webpack.Progress] 69% building 1729/1750 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hast-util-whitespace/index.js - [webpack.Progress] 69% building 1729/1751 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/style-loader/dist/cjs.js??ref--15-0!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1730/1751 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hast-util-whitespace/index.js - [webpack.Progress] 69% building 1730/1752 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1731/1752 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1732/1752 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1733/1752 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1734/1752 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1735/1752 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1736/1752 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1737/1752 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1738/1752 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1739/1752 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1740/1752 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1741/1752 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1742/1752 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1743/1752 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1744/1752 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1745/1752 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1746/1752 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1747/1752 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1748/1752 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/css-loader/dist/cjs.js!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/postcss-loader/src/index.js??ref--15-2!/Users/lastexile/code/monday/monday-ui-react-core/node_modules/fast-sass-loader/lib/index.js??ref--15-3!/Users/lastexile/code/monday/monday-ui-react-core/src/components/storybook-helpers/description-label/description-label.scss - [webpack.Progress] 69% building 1748/1753 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2016.js - [webpack.Progress] 69% building 1749/1753 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2016.js - [webpack.Progress] 69% building 1749/1754 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unified/lib/index.js - [webpack.Progress] 69% building 1749/1755 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/remark-parse/lib/index.js - [webpack.Progress] 69% building 1749/1756 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/xlink.js - [webpack.Progress] 69% building 1749/1757 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/xml.js - [webpack.Progress] 69% building 1749/1758 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/xmlns.js - [webpack.Progress] 69% building 1749/1759 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/aria.js - [webpack.Progress] 69% building 1749/1760 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/html.js - [webpack.Progress] 69% building 1749/1761 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/svg.js - [webpack.Progress] 69% building 1749/1762 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/find.js - [webpack.Progress] 69% building 1749/1763 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/normalize.js - [webpack.Progress] 69% building 1749/1764 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/hast-to-react.js - [webpack.Progress] 69% building 1749/1765 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/index.js - [webpack.Progress] 69% building 1749/1766 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/util/merge.js - [webpack.Progress] 69% building 1749/1767 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/jsdocParser.js - [webpack.Progress] 69% building 1749/1768 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/createPropDef.js - [webpack.Progress] 69% building 1749/1769 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-ecdh/browser.js - [webpack.Progress] 69% building 1749/1770 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/useStory.js - [webpack.Progress] 69% building 1749/1771 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/algorithms.json - [webpack.Progress] 69% building 1749/1772 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/enhanceSource.js - [webpack.Progress] 69% building 1749/1773 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/blocks/utils.js - [webpack.Progress] 69% building 1749/1774 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/engine-is-webos-webkit.js - [webpack.Progress] 69% building 1750/1774 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/engine-is-webos-webkit.js - [webpack.Progress] 69% building 1751/1774 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/engine-is-webos-webkit.js - [webpack.Progress] 69% building 1751/1775 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1752/1775 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1753/1775 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1754/1775 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1755/1775 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1756/1775 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1757/1775 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1758/1775 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1759/1775 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1760/1775 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1761/1775 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1762/1775 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1763/1775 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1764/1775 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/index.js - [webpack.Progress] 69% building 1764/1776 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escape-html/index.js - [webpack.Progress] 69% building 1765/1776 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escape-html/index.js - [webpack.Progress] 69% building 1766/1776 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/escape-html/index.js - [webpack.Progress] 69% building 1766/1777 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/react-is/cjs/react-is.production.min.js - [webpack.Progress] 69% building 1766/1778 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/shim.js - [webpack.Progress] 69% building 1766/1779 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-cipher/browser.js - [webpack.Progress] 69% building 1767/1779 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-cipher/browser.js - [webpack.Progress] 69% building 1767/1780 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/diffie-hellman/browser.js - [webpack.Progress] 69% building 1768/1780 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/diffie-hellman/browser.js - [webpack.Progress] 69% building 1769/1780 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/diffie-hellman/browser.js - [webpack.Progress] 69% building 1769/1781 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-hmac/browser.js - [webpack.Progress] 69% building 1770/1781 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-hmac/browser.js - [webpack.Progress] 69% building 1770/1782 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/sortProps.js - [webpack.Progress] 69% building 1770/1783 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/rawDefaultPropResolvers.js - [webpack.Progress] 69% building 1770/1784 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/createType.js - [webpack.Progress] 69% building 1771/1784 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/createType.js - [webpack.Progress] 69% building 1772/1784 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/createType.js - [webpack.Progress] 69% building 1772/1785 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/util/create.js - [webpack.Progress] 69% building 1772/1786 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/util/types.js - [webpack.Progress] 69% building 1772/1787 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/util/info.js - [webpack.Progress] 69% building 1772/1788 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/util/defined-info.js - [webpack.Progress] 69% building 1772/1789 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minurl.browser.js - [webpack.Progress] 69% building 1772/1790 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/util/schema.js - [webpack.Progress] 69% building 1772/1791 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/index.js - [webpack.Progress] 69% building 1773/1791 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/index.js - [webpack.Progress] 69% building 1774/1791 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/index.js - [webpack.Progress] 69% building 1775/1791 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/index.js - [webpack.Progress] 69% building 1776/1791 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/index.js - [webpack.Progress] 69% building 1777/1791 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/index.js - [webpack.Progress] 69% building 1777/1792 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minproc.browser.js - [webpack.Progress] 69% building 1778/1792 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minproc.browser.js - [webpack.Progress] 69% building 1779/1792 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minproc.browser.js - [webpack.Progress] 69% building 1780/1792 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minproc.browser.js - [webpack.Progress] 69% building 1781/1792 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minproc.browser.js - [webpack.Progress] 69% building 1782/1792 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minproc.browser.js - [webpack.Progress] 69% building 1783/1792 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minproc.browser.js - [webpack.Progress] 69% building 1783/1793 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minpath.browser.js - [webpack.Progress] 69% building 1783/1794 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/util/case-insensitive-transform.js - [webpack.Progress] 69% building 1783/1795 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/property-information/lib/util/case-sensitive-transform.js - [webpack.Progress] 69% building 1783/1796 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.weak-map.js - [webpack.Progress] 69% building 1783/1797 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2017.js - [webpack.Progress] 69% building 1784/1797 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2017.js - [webpack.Progress] 69% building 1785/1797 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2017.js - [webpack.Progress] 69% building 1786/1797 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2017.js - [webpack.Progress] 69% building 1787/1797 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2017.js - [webpack.Progress] 69% building 1788/1797 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2017.js - [webpack.Progress] 69% building 1789/1797 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2017.js - [webpack.Progress] 69% building 1790/1797 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2017.js - [webpack.Progress] 69% building 1790/1798 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/defaultValue.js - [webpack.Progress] 69% building 1791/1798 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/defaultValue.js - [webpack.Progress] 69% building 1792/1798 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/defaultValue.js - [webpack.Progress] 69% building 1793/1798 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/defaultValue.js - [webpack.Progress] 69% building 1794/1798 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/defaultValue.js - [webpack.Progress] 69% building 1794/1799 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile/lib/minurl.shared.js - [webpack.Progress] 69% building 1794/1800 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/typeScript/createPropDef.js - [webpack.Progress] 69% building 1794/1801 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/diffie-hellman/lib/primes.json - [webpack.Progress] 69% building 1795/1801 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/diffie-hellman/lib/primes.json - [webpack.Progress] 69% building 1795/1802 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createPropDef.js - [webpack.Progress] 69% building 1796/1802 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createPropDef.js - [webpack.Progress] 69% building 1796/1803 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/verify.js - [webpack.Progress] 69% building 1796/1804 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/sign.js - [webpack.Progress] 69% building 1796/1805 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array-includes/shim.js - [webpack.Progress] 69% building 1797/1805 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array-includes/shim.js - [webpack.Progress] 69% building 1797/1806 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/frameworks/react/propTypes/generateFuncSignature.js - [webpack.Progress] 69% building 1797/1807 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/diffie-hellman/lib/generatePrime.js - [webpack.Progress] 69% building 1797/1808 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-hmac/legacy.js - [webpack.Progress] 69% building 1797/1809 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/diffie-hellman/lib/dh.js - [webpack.Progress] 69% building 1797/1810 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/polyfill.js - [webpack.Progress] 69% building 1798/1810 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/polyfill.js - [webpack.Progress] 69% building 1799/1810 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/polyfill.js - [webpack.Progress] 69% building 1800/1810 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/polyfill.js - [webpack.Progress] 69% building 1800/1811 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/docgenInfo.js - [webpack.Progress] 69% building 1800/1812 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/string.js - [webpack.Progress] 69% building 1801/1812 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/utils/string.js - [webpack.Progress] 69% building 1801/1813 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/index.js - [webpack.Progress] 69% building 1802/1813 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/index.js - [webpack.Progress] 69% building 1803/1813 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/index.js - [webpack.Progress] 69% building 1804/1813 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/index.js - [webpack.Progress] 69% building 1804/1814 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/modes.js - [webpack.Progress] 69% building 1804/1815 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/uuid-browser/v4.js - [webpack.Progress] 69% building 1804/1816 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es6-shim/es6-shim.js - [webpack.Progress] 69% building 1805/1816 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es6-shim/es6-shim.js - [webpack.Progress] 69% building 1806/1816 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es6-shim/es6-shim.js - [webpack.Progress] 69% building 1807/1816 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es6-shim/es6-shim.js - [webpack.Progress] 69% building 1808/1816 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es6-shim/es6-shim.js - [webpack.Progress] 69% building 1809/1816 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es6-shim/es6-shim.js - [webpack.Progress] 69% building 1809/1817 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/collection-weak.js - [webpack.Progress] 69% building 1810/1817 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/internals/collection-weak.js - [webpack.Progress] 69% building 1810/1818 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2018.js - [webpack.Progress] 69% building 1810/1819 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 69% building 1811/1819 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 69% building 1812/1819 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/index.js - [webpack.Progress] 69% building 1812/1820 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/browser/curves.json - [webpack.Progress] 69% building 1812/1821 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/inline-style-parser/index.js - [webpack.Progress] 69% building 1813/1821 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/inline-style-parser/index.js - [webpack.Progress] 69% building 1814/1821 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/inline-style-parser/index.js - [webpack.Progress] 69% building 1815/1821 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/inline-style-parser/index.js - [webpack.Progress] 69% building 1816/1821 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/inline-style-parser/index.js - [webpack.Progress] 69% building 1816/1822 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/typeScript/createType.js - [webpack.Progress] 69% building 1816/1823 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/typeScript/createDefaultValue.js - [webpack.Progress] 69% building 1817/1823 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/typeScript/createDefaultValue.js - [webpack.Progress] 69% building 1817/1824 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createType.js - [webpack.Progress] 69% building 1817/1825 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/docgen/flow/createDefaultValue.js - [webpack.Progress] 69% building 1817/1826 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit/node_modules/unist-util-visit-parents/index.js - [webpack.Progress] 69% building 1818/1826 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit/node_modules/unist-util-visit-parents/index.js - [webpack.Progress] 69% building 1819/1826 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit/node_modules/unist-util-visit-parents/index.js - [webpack.Progress] 69% building 1819/1827 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.entries/shim.js - [webpack.Progress] 69% building 1819/1828 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.values/shim.js - [webpack.Progress] 69% building 1820/1828 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.values/shim.js - [webpack.Progress] 69% building 1820/1829 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/shim.js - [webpack.Progress] 69% building 1820/1830 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/shim.js - [webpack.Progress] 69% building 1821/1830 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/shim.js - [webpack.Progress] 69% building 1821/1831 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array-includes/polyfill.js - [webpack.Progress] 69% building 1821/1832 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/bail/index.js - [webpack.Progress] 69% building 1821/1833 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/index.js - [webpack.Progress] 69% building 1821/1834 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/traverse.js - [webpack.Progress] 69% building 1821/1835 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-buffer/index.js - [webpack.Progress] 69% building 1821/1836 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.get-own-property-descriptor.js - [webpack.Progress] 69% building 1821/1837 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/core-js/modules/es.object.get-own-property-descriptors.js - [webpack.Progress] 69% building 1821/1838 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/index.js - [webpack.Progress] 69% building 1821/1839 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/implementation.js - [webpack.Progress] 69% building 1821/1840 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.getownpropertydescriptors/shim.js - [webpack.Progress] 69% building 1821/1841 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/index.js - [webpack.Progress] 69% building 1822/1841 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/index.js - [webpack.Progress] 69% building 1823/1841 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/index.js - [webpack.Progress] 69% building 1824/1841 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/index.js - [webpack.Progress] 69% building 1825/1841 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/index.js - [webpack.Progress] 69% building 1826/1841 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/index.js - [webpack.Progress] 69% building 1826/1842 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/doctrine.js - [webpack.Progress] 69% building 1827/1842 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/doctrine.js - [webpack.Progress] 69% building 1827/1843 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile-message/index.js - [webpack.Progress] 69% building 1828/1843 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile-message/index.js - [webpack.Progress] 69% building 1829/1843 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile-message/index.js - [webpack.Progress] 69% building 1830/1843 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/vfile-message/index.js - [webpack.Progress] 69% building 1830/1844 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic.js - [webpack.Progress] 69% building 1831/1844 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic.js - [webpack.Progress] 69% building 1831/1845 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/trough/index.js - [webpack.Progress] 69% building 1831/1846 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1832/1846 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1833/1846 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1834/1846 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1835/1846 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1836/1846 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1837/1846 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1838/1846 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1839/1846 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1840/1846 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-des/index.js - [webpack.Progress] 69% building 1840/1847 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/define-properties/index.js - [webpack.Progress] 69% building 1840/1848 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit/node_modules/unist-util-visit-parents/color.browser.js - [webpack.Progress] 69% building 1841/1848 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit/node_modules/unist-util-visit-parents/color.browser.js - [webpack.Progress] 69% building 1841/1849 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/uuid-browser/lib/rng-browser.js - [webpack.Progress] 69% building 1841/1850 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/uuid-browser/lib/bytesToUuid.js - [webpack.Progress] 69% building 1841/1851 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2019.js - [webpack.Progress] 69% building 1841/1852 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/story.js - [webpack.Progress] 69% building 1841/1853 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-ecdh/node_modules/bn.js/lib/bn.js - [webpack.Progress] 69% building 1842/1853 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-ecdh/node_modules/bn.js/lib/bn.js - [webpack.Progress] 69% building 1842/1854 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/functions-have-names/index.js - [webpack.Progress] 69% building 1843/1854 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/functions-have-names/index.js - [webpack.Progress] 69% building 1843/1855 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/footer.js - [webpack.Progress] 69% building 1843/1856 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/safe-buffer/index.js - [webpack.Progress] 69% building 1843/1857 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/readable-browser.js - [webpack.Progress] 69% building 1844/1857 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/readable-browser.js - [webpack.Progress] 69% building 1845/1857 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/readable-browser.js - [webpack.Progress] 69% building 1846/1857 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/readable-browser.js - [webpack.Progress] 69% building 1846/1858 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/is-plain-obj/index.js - [webpack.Progress] 69% building 1847/1858 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/is-plain-obj/index.js - [webpack.Progress] 69% building 1848/1858 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/is-plain-obj/index.js - [webpack.Progress] 69% building 1849/1858 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/is-plain-obj/index.js - [webpack.Progress] 69% building 1849/1859 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/index.js - [webpack.Progress] 69% building 1849/1860 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/lib/index.js - [webpack.Progress] 69% building 1850/1860 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/lib/index.js - [webpack.Progress] 69% building 1851/1860 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/lib/index.js - [webpack.Progress] 69% building 1852/1860 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/lib/index.js - [webpack.Progress] 69% building 1852/1861 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.entries/polyfill.js - [webpack.Progress] 69% building 1852/1862 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.values/polyfill.js - [webpack.Progress] 69% building 1852/1863 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/polyfill.js - [webpack.Progress] 69% building 1852/1864 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/polyfill.js - [webpack.Progress] 69% building 1852/1865 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array-includes/implementation.js - [webpack.Progress] 69% building 1853/1865 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array-includes/implementation.js - [webpack.Progress] 69% building 1853/1866 modules 13 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/create-ecdh/node_modules/bn.js/lib buffer - [webpack.Progress] 69% building 1854/1866 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array-includes/implementation.js - [webpack.Progress] 69% building 1854/1867 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/package.json - [webpack.Progress] 69% building 1855/1867 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array-includes/implementation.js - [webpack.Progress] 69% building 1856/1867 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array-includes/implementation.js - [webpack.Progress] 69% building 1856/1868 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/extend/index.js - [webpack.Progress] 69% building 1856/1869 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/auto.js - [webpack.Progress] 69% building 1857/1869 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/auto.js - [webpack.Progress] 69% building 1858/1869 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/auto.js - [webpack.Progress] 69% building 1859/1869 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/auto.js - [webpack.Progress] 69% building 1859/1870 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.getownpropertydescriptors/polyfill.js - [webpack.Progress] 69% building 1860/1870 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.getownpropertydescriptors/polyfill.js - [webpack.Progress] 69% building 1860/1871 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/typed.js - [webpack.Progress] 69% building 1860/1872 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/utility.js - [webpack.Progress] 69% building 1861/1872 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/utility.js - [webpack.Progress] 69% building 1862/1872 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/utility.js - [webpack.Progress] 69% building 1863/1872 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/utility.js - [webpack.Progress] 69% building 1864/1872 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/utility.js - [webpack.Progress] 69% building 1865/1872 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/utility.js - [webpack.Progress] 69% building 1866/1872 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/lib/utility.js - [webpack.Progress] 69% building 1866/1873 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js - [webpack.Progress] 69% building 1866/1874 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/list.js - [webpack.Progress] 69% building 1866/1875 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/wrap.js - [webpack.Progress] 69% building 1867/1875 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/wrap.js - [webpack.Progress] 69% building 1868/1875 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/wrap.js - [webpack.Progress] 69% building 1869/1875 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/wrap.js - [webpack.Progress] 69% building 1870/1875 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/wrap.js - [webpack.Progress] 69% building 1870/1876 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/utils.js - [webpack.Progress] 69% building 1870/1877 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/curves.js - [webpack.Progress] 69% building 1870/1878 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_readable.js - [webpack.Progress] 69% building 1870/1879 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_writable.js - [webpack.Progress] 69% building 1870/1880 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_transform.js - [webpack.Progress] 69% building 1870/1881 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_passthrough.js - [webpack.Progress] 69% building 1870/1882 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/_stream_duplex.js - [webpack.Progress] 69% building 1870/1883 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js - [webpack.Progress] 69% building 1870/1884 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/break.js - [webpack.Progress] 69% building 1870/1885 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/code.js - [webpack.Progress] 69% building 1870/1886 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/delete.js - [webpack.Progress] 69% building 1870/1887 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js - [webpack.Progress] 69% building 1870/1888 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js - [webpack.Progress] 69% building 1870/1889 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/footnote.js - [webpack.Progress] 69% building 1870/1890 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/heading.js - [webpack.Progress] 69% building 1870/1891 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/html.js - [webpack.Progress] 69% building 1870/1892 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js - [webpack.Progress] 69% building 1870/1893 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/image.js - [webpack.Progress] 69% building 1870/1894 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js - [webpack.Progress] 69% building 1870/1895 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js - [webpack.Progress] 69% building 1870/1896 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/link.js - [webpack.Progress] 69% building 1870/1897 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/list-item.js - [webpack.Progress] 69% building 1870/1898 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js - [webpack.Progress] 69% building 1870/1899 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/root.js - [webpack.Progress] 69% building 1870/1900 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/strong.js - [webpack.Progress] 69% building 1870/1901 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/table.js - [webpack.Progress] 68% building 1870/1902 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/handlers/text.js - [webpack.Progress] 68% building 1870/1903 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/airbnb-js-shims/target/es2020.js - [webpack.Progress] 68% building 1870/1904 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 68% building 1871/1904 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 68% building 1872/1904 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 69% building 1873/1904 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 69% building 1874/1904 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 69% building 1875/1904 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/node_modules/@storybook/csf/dist/SBType.js - [webpack.Progress] 69% building 1875/1905 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/end-of-stream.js - [webpack.Progress] 69% building 1875/1906 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/pipeline.js - [webpack.Progress] 68% building 1875/1907 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/miller-rabin/lib/mr.js - [webpack.Progress] 68% building 1875/1908 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 68% building 1876/1908 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1877/1908 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1878/1908 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1879/1908 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1880/1908 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1880/1909 modules 29 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib util - [webpack.Progress] 69% building 1881/1909 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1882/1909 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1882/1910 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/doctrine/package.json - [webpack.Progress] 69% building 1883/1910 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1884/1910 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1885/1910 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1886/1910 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1887/1910 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1888/1910 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1889/1910 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1890/1910 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1891/1910 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1892/1910 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1893/1910 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1894/1910 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1895/1910 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1896/1910 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1897/1910 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1898/1910 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1899/1910 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1900/1910 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1901/1910 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1902/1910 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1903/1910 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1904/1910 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 1904/1911 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.values/implementation.js - [webpack.Progress] 69% building 1904/1912 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.entries/implementation.js - [webpack.Progress] 69% building 1905/1912 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.entries/implementation.js - [webpack.Progress] 69% building 1906/1912 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.entries/implementation.js - [webpack.Progress] 69% building 1906/1913 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/implementation.js - [webpack.Progress] 69% building 1906/1914 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/implementation.js -info => Manager built (26 s) - [webpack.Progress] 69% building 1906/1915 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/shim.js - [webpack.Progress] 69% building 1906/1916 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/symbol.prototype.description/auto.js - [webpack.Progress] 69% building 1906/1917 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flat/auto.js - [webpack.Progress] 69% building 1906/1918 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.fromentries/auto.js - [webpack.Progress] 69% building 1906/1919 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flatmap/auto.js - [webpack.Progress] 69% building 1907/1919 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flatmap/auto.js - [webpack.Progress] 69% building 1908/1919 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flatmap/auto.js - [webpack.Progress] 69% building 1908/1920 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/diffie-hellman/node_modules/bn.js/lib/bn.js - [webpack.Progress] 69% building 1908/1921 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.getownpropertydescriptors/implementation.js - [webpack.Progress] 69% building 1908/1922 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/errors-browser.js - [webpack.Progress] 69% building 1909/1922 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/errors-browser.js - [webpack.Progress] 69% building 1909/1923 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/revert.js - [webpack.Progress] 69% building 1910/1923 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-to-hast/lib/revert.js - [webpack.Progress] 69% building 1910/1924 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/isNaN.js - [webpack.Progress] 69% building 1910/1925 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/isFinite.js - [webpack.Progress] 69% building 1910/1926 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToInteger.js - [webpack.Progress] 69% building 1910/1927 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToLength.js - [webpack.Progress] 69% building 1910/1928 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToObject.js - [webpack.Progress] 69% building 1910/1929 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/SameValueZero.js - [webpack.Progress] 69% building 1911/1929 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/SameValueZero.js - [webpack.Progress] 69% building 1912/1929 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/SameValueZero.js - [webpack.Progress] 69% building 1913/1929 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/SameValueZero.js - [webpack.Progress] 69% building 1913/1930 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/node_modules/parse-entities/decode-entity.js - [webpack.Progress] 69% building 1914/1930 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/node_modules/parse-entities/decode-entity.js - [webpack.Progress] 69% building 1914/1931 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/assert/assert.js - [webpack.Progress] 69% building 1914/1932 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-is/index.js - [webpack.Progress] 69% building 1915/1932 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-is/index.js - [webpack.Progress] 69% building 1916/1932 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-is/index.js - [webpack.Progress] 69% building 1917/1932 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-is/index.js - [webpack.Progress] 69% building 1918/1932 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-is/index.js - [webpack.Progress] 69% building 1919/1932 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-is/index.js - [webpack.Progress] 69% building 1920/1932 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-is/index.js - [webpack.Progress] 69% building 1920/1933 modules 13 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/diffie-hellman/node_modules/bn.js/lib buffer - [webpack.Progress] 69% building 1921/1933 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-is/index.js - [webpack.Progress] 69% building 1922/1933 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-is/index.js - [webpack.Progress] 69% building 1922/1934 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/destroy.js - [webpack.Progress] 69% building 1923/1934 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/destroy.js - [webpack.Progress] 69% building 1923/1935 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/state.js - [webpack.Progress] 69% building 1923/1936 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/buffer_list.js - [webpack.Progress] 69% building 1923/1937 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/async_iterator.js - [webpack.Progress] 69% building 1924/1937 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/async_iterator.js - [webpack.Progress] 69% building 1924/1938 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-builder/index.js - [webpack.Progress] 69% building 1924/1939 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-generated/index.js - [webpack.Progress] 69% building 1924/1940 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-position/index.js - [webpack.Progress] 69% building 1925/1940 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-position/index.js - [webpack.Progress] 69% building 1926/1940 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-position/index.js - [webpack.Progress] 69% building 1927/1940 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-position/index.js - [webpack.Progress] 69% building 1927/1941 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-definitions/index.js - [webpack.Progress] 69% building 1928/1941 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-definitions/index.js - [webpack.Progress] 69% building 1929/1941 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-definitions/index.js - [webpack.Progress] 69% building 1930/1941 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-definitions/index.js - [webpack.Progress] 69% building 1930/1942 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/stream-browser.js - [webpack.Progress] 69% building 1930/1943 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/from-browser.js - [webpack.Progress] 69% building 1931/1943 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams/from-browser.js - [webpack.Progress] 69% building 1931/1944 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.js - [webpack.Progress] 69% building 1932/1944 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.js - [webpack.Progress] 69% building 1933/1944 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/precomputed/secp256k1.js - [webpack.Progress] 69% building 1933/1945 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/index.js - [webpack.Progress] 69% building 1933/1946 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/flow/index.js - [webpack.Progress] 69% building 1933/1947 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/index.js - [webpack.Progress] 69% building 1933/1948 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-stringify-position/index.js - [webpack.Progress] 69% building 1934/1948 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-stringify-position/index.js - [webpack.Progress] 69% building 1934/1949 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/brorand/index.js - [webpack.Progress] 69% building 1935/1949 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/brorand/index.js - [webpack.Progress] 69% building 1935/1950 modules 15 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/browserify-sign/node_modules/readable-stream/lib/internal/streams util - [webpack.Progress] 69% building 1936/1950 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/brorand/index.js - [webpack.Progress] 69% building 1937/1950 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/brorand/index.js - [webpack.Progress] 69% building 1938/1950 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/brorand/index.js - [webpack.Progress] 69% building 1939/1950 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/brorand/index.js - [webpack.Progress] 69% building 1939/1951 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/RequireObjectCoercible.js - [webpack.Progress] 69% building 1940/1951 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/RequireObjectCoercible.js - [webpack.Progress] 69% building 1941/1951 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/RequireObjectCoercible.js - [webpack.Progress] 69% building 1942/1951 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/RequireObjectCoercible.js - [webpack.Progress] 69% building 1943/1951 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/RequireObjectCoercible.js - [webpack.Progress] 69% building 1944/1951 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/RequireObjectCoercible.js - [webpack.Progress] 69% building 1944/1952 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/requirePromise.js - [webpack.Progress] 69% building 1944/1953 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/polyfill.js - [webpack.Progress] 69% building 1944/1954 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flat/shim.js - [webpack.Progress] 69% building 1944/1955 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.fromentries/shim.js - [webpack.Progress] 69% building 1944/1956 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/symbol.prototype.description/shim.js - [webpack.Progress] 69% building 1944/1957 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flatmap/shim.js - [webpack.Progress] 69% building 1944/1958 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.matchall/auto.js - [webpack.Progress] 69% building 1944/1959 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object-keys/index.js - [webpack.Progress] 69% building 1944/1960 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/auto.js - [webpack.Progress] 69% building 1944/1961 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/curve/index.js - [webpack.Progress] 69% building 1944/1962 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/eddsa/index.js - [webpack.Progress] 69% building 1944/1963 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/ec/index.js - [webpack.Progress] 69% building 1945/1963 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/ec/index.js - [webpack.Progress] 69% building 1945/1964 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/globalthis/auto.js - [webpack.Progress] 69% building 1945/1965 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CreateDataProperty.js - [webpack.Progress] 69% building 1945/1966 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IsCallable.js - [webpack.Progress] 69% building 1945/1967 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/des.js/lib/des.js - [webpack.Progress] 69% building 1945/1968 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/node_modules/parse-entities/lib/decode-entity.browser.js - [webpack.Progress] 69% building 1946/1968 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/node_modules/parse-entities/lib/decode-entity.browser.js - [webpack.Progress] 69% building 1947/1968 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/node_modules/parse-entities/lib/decode-entity.browser.js - [webpack.Progress] 69% building 1948/1968 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/node_modules/parse-entities/lib/decode-entity.browser.js - [webpack.Progress] 69% building 1949/1968 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/node_modules/parse-entities/lib/decode-entity.browser.js - [webpack.Progress] 69% building 1949/1969 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToNumber.js - [webpack.Progress] 69% building 1949/1970 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/maxSafeInteger.js - [webpack.Progress] 69% building 1950/1970 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/maxSafeInteger.js - [webpack.Progress] 69% building 1950/1971 modules 21 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/brorand crypto - [webpack.Progress] 69% building 1951/1971 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/maxSafeInteger.js - [webpack.Progress] 69% building 1952/1971 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/maxSafeInteger.js - [webpack.Progress] 69% building 1952/1972 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/parse.js - [webpack.Progress] 69% building 1952/1973 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/preprocess.js - [webpack.Progress] 69% building 1952/1974 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1953/1974 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1954/1974 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1955/1974 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1956/1974 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1957/1974 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1958/1974 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1959/1974 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1960/1974 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1961/1974 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1962/1974 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1963/1974 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/postprocess.js - [webpack.Progress] 69% building 1963/1975 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToInteger.js - [webpack.Progress] 69% building 1964/1975 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToInteger.js - [webpack.Progress] 69% building 1965/1975 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToInteger.js - [webpack.Progress] 69% building 1966/1975 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToInteger.js - [webpack.Progress] 69% building 1966/1976 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-to-string/index.js - [webpack.Progress] 69% building 1966/1977 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-normalize-identifier/index.js - [webpack.Progress] 69% building 1966/1978 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-decode-string/index.js - [webpack.Progress] 69% building 1966/1979 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/util.js - [webpack.Progress] 69% building 1966/1980 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-decode-numeric-character-reference/index.js - [webpack.Progress] 69% building 1967/1980 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-decode-numeric-character-reference/index.js - [webpack.Progress] 69% building 1968/1980 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-decode-numeric-character-reference/index.js - [webpack.Progress] 69% building 1968/1981 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-string/index.js - [webpack.Progress] 69% building 1969/1981 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-string/index.js - [webpack.Progress] 69% building 1970/1981 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-string/index.js - [webpack.Progress] 69% building 1971/1981 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-string/index.js - [webpack.Progress] 69% building 1971/1982 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdurl/encode.js - [webpack.Progress] 69% building 1971/1983 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/mdast-util-from-markdown/node_modules/unist-util-stringify-position/index.js - [webpack.Progress] 69% building 1971/1984 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/2021/ToLength.js - [webpack.Progress] 69% building 1971/1985 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 1971/1986 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/2021/RequireObjectCoercible.js - [webpack.Progress] 69% building 1971/1987 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/ToLength.js - [webpack.Progress] 69% building 1971/1988 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 1971/1989 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/RequireObjectCoercible.js - [webpack.Progress] 69% building 1972/1989 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/RequireObjectCoercible.js - [webpack.Progress] 69% building 1973/1989 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/RequireObjectCoercible.js - [webpack.Progress] 69% building 1974/1989 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/RequireObjectCoercible.js - [webpack.Progress] 69% building 1974/1990 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/flow/convert.js - [webpack.Progress] 69% building 1974/1991 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/flow/types.js - [webpack.Progress] 69% building 1975/1991 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/flow/types.js - [webpack.Progress] 69% building 1975/1992 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/convert.js - [webpack.Progress] 69% building 1975/1993 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/proptypes/types.js - [webpack.Progress] 69% building 1975/1994 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/convert.js - [webpack.Progress] 69% building 1975/1995 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/types.js - [webpack.Progress] 69% building 1976/1995 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/types.js - [webpack.Progress] 69% building 1977/1995 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/types.js - [webpack.Progress] 69% building 1978/1995 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/types.js - [webpack.Progress] 69% building 1979/1995 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/types.js - [webpack.Progress] 69% building 1980/1995 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/types.js - [webpack.Progress] 69% building 1981/1995 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/typescript/types.js - [webpack.Progress] 69% building 1981/1996 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 1981/1997 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/create-tokenizer.js - [webpack.Progress] 69% building 1981/1998 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/constructs.js - [webpack.Progress] 69% building 1982/1998 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/constructs.js - [webpack.Progress] 69% building 1982/1999 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.fromentries/polyfill.js - [webpack.Progress] 69% building 1982/2000 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/implementation.js - [webpack.Progress] 69% building 1982/2001 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/symbol.prototype.description/polyfill.js - [webpack.Progress] 69% building 1982/2002 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flat/polyfill.js - [webpack.Progress] 69% building 1983/2002 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flat/polyfill.js - [webpack.Progress] 69% building 1983/2003 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flatmap/polyfill.js - [webpack.Progress] 69% building 1983/2004 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object-keys/isArguments.js - [webpack.Progress] 69% building 1983/2005 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object-keys/implementation.js - [webpack.Progress] 69% building 1983/2006 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.matchall/shim.js - [webpack.Progress] 69% building 1983/2007 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/shim.js - [webpack.Progress] 69% building 1984/2007 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/shim.js - [webpack.Progress] 69% building 1985/2007 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/shim.js - [webpack.Progress] 69% building 1986/2007 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/shim.js - [webpack.Progress] 69% building 1987/2007 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/shim.js - [webpack.Progress] 69% building 1987/2008 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/eddsa/key.js - [webpack.Progress] 69% building 1987/2009 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/eddsa/signature.js - [webpack.Progress] 69% building 1987/2010 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/curve/base.js - [webpack.Progress] 69% building 1988/2010 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/curve/base.js - [webpack.Progress] 69% building 1989/2010 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/curve/base.js - [webpack.Progress] 69% building 1989/2011 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/curve/short.js - [webpack.Progress] 69% building 1989/2012 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/curve/mont.js - [webpack.Progress] 69% building 1989/2013 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/curve/edwards.js - [webpack.Progress] 69% building 1989/2014 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/ec/key.js - [webpack.Progress] 69% building 1989/2015 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/lib/elliptic/ec/signature.js - [webpack.Progress] 69% building 1989/2016 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/globalthis/shim.js - [webpack.Progress] 69% building 1989/2017 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/DefineOwnProperty.js - [webpack.Progress] 69% building 1989/2018 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/FromPropertyDescriptor.js - [webpack.Progress] 69% building 1989/2019 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/OrdinaryGetOwnProperty.js - [webpack.Progress] 69% building 1989/2020 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IsDataDescriptor.js - [webpack.Progress] 69% building 1989/2021 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IsExtensible.js - [webpack.Progress] 69% building 1989/2022 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IsPropertyKey.js - [webpack.Progress] 68% building 1989/2023 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/SameValue.js - [webpack.Progress] 68% building 1989/2024 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Type.js - [webpack.Progress] 68% building 1990/2024 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Type.js - [webpack.Progress] 69% building 1991/2024 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Type.js - [webpack.Progress] 69% building 1992/2024 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Type.js - [webpack.Progress] 69% building 1993/2024 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Type.js - [webpack.Progress] 69% building 1994/2024 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Type.js - [webpack.Progress] 69% building 1995/2024 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Type.js - [webpack.Progress] 69% building 1995/2025 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/initialize/content.js - [webpack.Progress] 69% building 1995/2026 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/initialize/document.js - [webpack.Progress] 69% building 1995/2027 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/initialize/flow.js - [webpack.Progress] 69% building 1995/2028 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark/lib/initialize/text.js - [webpack.Progress] 68% building 1995/2029 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/regexTester.js - [webpack.Progress] 68% building 1995/2030 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 68% building 1995/2031 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToPrimitive.js - [webpack.Progress] 68% building 1995/2032 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/minimalistic-crypto-utils/lib/utils.js - [webpack.Progress] 68% building 1995/2033 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash.js - [webpack.Progress] 68% building 1995/2034 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/des.js/lib/des/utils.js - [webpack.Progress] 68% building 1995/2035 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/des.js/lib/des/cipher.js - [webpack.Progress] 68% building 1995/2036 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/des.js/lib/des/des.js - [webpack.Progress] 68% building 1995/2037 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/des.js/lib/des/cbc.js - [webpack.Progress] 68% building 1995/2038 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/des.js/lib/des/ede.js - [webpack.Progress] 68% building 1996/2038 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/des.js/lib/des/ede.js - [webpack.Progress] 68% building 1996/2039 modules 43 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/node_modules/bn.js/lib/bn.js - [webpack.Progress] 68% building 1997/2039 modules 42 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/node_modules/bn.js/lib/bn.js - [webpack.Progress] 68% building 1998/2039 modules 41 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/node_modules/bn.js/lib/bn.js - [webpack.Progress] 68% building 1999/2039 modules 40 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/node_modules/bn.js/lib/bn.js - [webpack.Progress] 68% building 2000/2039 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/node_modules/bn.js/lib/bn.js - [webpack.Progress] 68% building 2001/2039 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/node_modules/bn.js/lib/bn.js - [webpack.Progress] 68% building 2002/2039 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/node_modules/bn.js/lib/bn.js - [webpack.Progress] 68% building 2002/2040 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/function.prototype.name/node_modules/is-callable/index.js - [webpack.Progress] 68% building 2002/2041 modules 39 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 68% building 2003/2041 modules 38 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 68% building 2004/2041 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 68% building 2005/2041 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 68% building 2006/2041 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2007/2041 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2008/2041 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2009/2041 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2010/2041 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2011/2041 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2012/2041 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2013/2041 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2013/2042 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/abs.js - [webpack.Progress] 69% building 2014/2042 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/abs.js - [webpack.Progress] 69% building 2014/2043 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/floor.js - [webpack.Progress] 69% building 2014/2044 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToNumber.js - [webpack.Progress] 69% building 2015/2044 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToNumber.js - [webpack.Progress] 69% building 2015/2045 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2016/2045 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2017/2045 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2018/2045 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2019/2045 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2020/2045 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2021/2045 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2022/2045 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2023/2045 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2024/2045 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2024/2046 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2025/2046 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2026/2046 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2027/2046 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2028/2046 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2029/2046 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2030/2046 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2031/2046 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2032/2046 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2033/2046 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2034/2046 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2035/2046 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2036/2046 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2037/2046 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2038/2046 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/getInferredName.js - [webpack.Progress] 69% building 2038/2047 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/2021/ToIntegerOrInfinity.js - [webpack.Progress] 69% building 2038/2048 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/ToIntegerOrInfinity.js - [webpack.Progress] 69% building 2039/2048 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/ToIntegerOrInfinity.js - [webpack.Progress] 69% building 2039/2049 modules 10 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/elliptic/node_modules/bn.js/lib buffer - [webpack.Progress] 69% building 2040/2049 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/ToIntegerOrInfinity.js - [webpack.Progress] 69% building 2040/2050 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/support/isBufferBrowser.js - [webpack.Progress] 69% building 2041/2050 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/support/isBufferBrowser.js - [webpack.Progress] 69% building 2042/2050 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/support/isBufferBrowser.js - [webpack.Progress] 69% building 2043/2050 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/support/isBufferBrowser.js - [webpack.Progress] 69% building 2044/2050 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/support/isBufferBrowser.js - [webpack.Progress] 69% building 2045/2050 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/support/isBufferBrowser.js - [webpack.Progress] 69% building 2046/2050 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/support/isBufferBrowser.js - [webpack.Progress] 69% building 2046/2051 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/@storybook/addon-docs/dist/esm/lib/convert/utils.js - [webpack.Progress] 69% building 2046/2052 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/miller-rabin/node_modules/bn.js/lib/bn.js - [webpack.Progress] 69% building 2047/2052 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/miller-rabin/node_modules/bn.js/lib/bn.js - [webpack.Progress] 69% building 2047/2053 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/maxSafeInteger.js - [webpack.Progress] 69% building 2047/2054 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-decode-string/node_modules/parse-entities/decode-entity.js - [webpack.Progress] 69% building 2047/2055 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2047/2056 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/maxSafeInteger.js - [webpack.Progress] 69% building 2047/2057 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2047/2058 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/symbol.prototype.description/implementation.js - [webpack.Progress] 69% building 2047/2059 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flat/implementation.js - [webpack.Progress] 69% building 2047/2060 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/object.fromentries/implementation.js - [webpack.Progress] 69% building 2047/2061 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.flatmap/implementation.js - [webpack.Progress] 69% building 2047/2062 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.matchall/polyfill.js - [webpack.Progress] 69% building 2047/2063 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.matchall/polyfill-regexp-matchall.js - [webpack.Progress] 69% building 2047/2064 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/requirePromise.js - [webpack.Progress] 69% building 2047/2065 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/polyfill.js - [webpack.Progress] 69% building 2048/2065 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/polyfill.js - [webpack.Progress] 69% building 2049/2065 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/polyfill.js - [webpack.Progress] 69% building 2049/2066 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/globalthis/polyfill.js - [webpack.Progress] 69% building 2049/2067 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/assertRecord.js - [webpack.Progress] 69% building 2049/2068 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js - [webpack.Progress] 69% building 2049/2069 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2049/2070 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IsRegExp.js - [webpack.Progress] 69% building 2049/2071 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToPropertyDescriptor.js - [webpack.Progress] 69% building 2050/2071 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToPropertyDescriptor.js - [webpack.Progress] 69% building 2050/2072 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2051/2072 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2052/2072 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2052/2073 modules 21 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/miller-rabin/node_modules/bn.js/lib buffer - [webpack.Progress] 69% building 2053/2073 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2054/2073 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2055/2073 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2056/2073 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2057/2073 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2058/2073 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2059/2073 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2060/2073 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2061/2073 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2062/2073 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2063/2073 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2064/2073 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2065/2073 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2066/2073 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2066/2074 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/sha.js - [webpack.Progress] 69% building 2066/2075 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/utils.js - [webpack.Progress] 69% building 2066/2076 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/common.js - [webpack.Progress] 69% building 2066/2077 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/hmac.js - [webpack.Progress] 69% building 2066/2078 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/ripemd.js - [webpack.Progress] 69% building 2066/2079 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/mdast-util-definitions/node_modules/unist-util-visit/index.js - [webpack.Progress] 69% building 2066/2080 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2067/2080 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2068/2080 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2069/2080 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2070/2080 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2071/2080 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2072/2080 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2073/2080 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2073/2081 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/5/ToInteger.js - [webpack.Progress] 69% building 2073/2082 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/2021/ToNumber.js - [webpack.Progress] 69% building 2073/2083 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-to-primitive/es2015.js - [webpack.Progress] 69% building 2073/2084 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToInteger.js - [webpack.Progress] 69% building 2073/2085 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/ToNumber.js - [webpack.Progress] 69% building 2073/2086 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-decode-string/node_modules/parse-entities/lib/decode-entity.browser.js - [webpack.Progress] 69% building 2073/2087 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/globalthis/implementation.browser.js - [webpack.Progress] 69% building 2073/2088 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 2073/2089 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/SpeciesConstructor.js - [webpack.Progress] 69% building 2073/2090 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/Type.js - [webpack.Progress] 69% building 2074/2090 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/Type.js - [webpack.Progress] 69% building 2075/2090 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/Type.js - [webpack.Progress] 69% building 2076/2090 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/Type.js - [webpack.Progress] 69% building 2077/2090 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/Type.js - [webpack.Progress] 69% building 2077/2091 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hmac-drbg/lib/hmac-drbg.js - [webpack.Progress] 69% building 2078/2091 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hmac-drbg/lib/hmac-drbg.js - [webpack.Progress] 69% building 2079/2091 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hmac-drbg/lib/hmac-drbg.js - [webpack.Progress] 69% building 2080/2091 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hmac-drbg/lib/hmac-drbg.js - [webpack.Progress] 69% building 2080/2092 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-combine-extensions/index.js - [webpack.Progress] 69% building 2080/2093 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-subtokenize/index.js - [webpack.Progress] 69% building 2080/2094 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ArraySpeciesCreate.js - [webpack.Progress] 69% building 2080/2095 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/FlattenIntoArray.js - [webpack.Progress] 69% building 2080/2096 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Get.js - [webpack.Progress] 69% building 2080/2097 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.matchall/regexp-matchall.js - [webpack.Progress] 69% building 2080/2098 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.matchall/implementation.js - [webpack.Progress] 69% building 2080/2099 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/AddEntriesFromIterable.js - [webpack.Progress] 69% building 2080/2100 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CreateDataPropertyOrThrow.js - [webpack.Progress] 69% building 2080/2101 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToPropertyKey.js - [webpack.Progress] 69% building 2080/2102 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/implementation.js - [webpack.Progress] 69% building 2081/2102 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/implementation.js - [webpack.Progress] 69% building 2082/2102 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/implementation.js - [webpack.Progress] 69% building 2083/2102 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/implementation.js - [webpack.Progress] 69% building 2084/2102 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/implementation.js - [webpack.Progress] 69% building 2085/2102 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/implementation.js - [webpack.Progress] 69% building 2086/2102 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/implementation.js - [webpack.Progress] 69% building 2087/2102 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/implementation.js - [webpack.Progress] 69% building 2087/2103 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToBoolean.js - [webpack.Progress] 69% building 2088/2103 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToBoolean.js - [webpack.Progress] 69% building 2089/2103 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToBoolean.js - [webpack.Progress] 69% building 2090/2103 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToBoolean.js - [webpack.Progress] 69% building 2091/2103 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToBoolean.js - [webpack.Progress] 69% building 2092/2103 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToBoolean.js - [webpack.Progress] 69% building 2093/2103 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToBoolean.js - [webpack.Progress] 69% building 2093/2104 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2094/2104 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2095/2104 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2096/2104 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2097/2104 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2098/2104 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2099/2104 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2100/2104 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2101/2104 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2102/2104 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/util/node_modules/inherits/inherits_browser.js - [webpack.Progress] 69% building 2102/2105 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-to-primitive/es5.js - [webpack.Progress] 69% building 2103/2105 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-to-primitive/es5.js - [webpack.Progress] 69% building 2103/2106 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/sha/1.js - [webpack.Progress] 69% building 2103/2107 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/sha/256.js - [webpack.Progress] 69% building 2103/2108 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/sha/384.js - [webpack.Progress] 69% building 2103/2109 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/sha/512.js - [webpack.Progress] 69% building 2103/2110 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/sha/224.js - [webpack.Progress] 69% building 2103/2111 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-character/index.js - [webpack.Progress] 69% building 2103/2112 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/index.js - [webpack.Progress] 69% building 2103/2113 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-resolve-all/index.js - [webpack.Progress] 69% building 2103/2114 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-chunked/index.js - [webpack.Progress] 69% building 2104/2114 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-chunked/index.js - [webpack.Progress] 69% building 2104/2115 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/5/abs.js - [webpack.Progress] 69% building 2104/2116 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/5/ToNumber.js - [webpack.Progress] 69% building 2104/2117 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/5/floor.js - [webpack.Progress] 69% building 2104/2118 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isNaN.js - [webpack.Progress] 69% building 2104/2119 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isFinite.js - [webpack.Progress] 69% building 2104/2120 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2104/2121 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/abs.js - [webpack.Progress] 69% building 2104/2122 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/floor.js - [webpack.Progress] 69% building 2104/2123 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToNumber.js - [webpack.Progress] 69% building 2104/2124 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isNaN.js - [webpack.Progress] 69% building 2104/2125 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isFinite.js - [webpack.Progress] 69% building 2104/2126 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/sign.js - [webpack.Progress] 69% building 2104/2127 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/regexTester.js - [webpack.Progress] 69% building 2104/2128 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/2021/ToPrimitive.js - [webpack.Progress] 69% building 2104/2129 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2104/2130 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/regexTester.js - [webpack.Progress] 69% building 2104/2131 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2104/2132 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/2021/ToPrimitive.js - [webpack.Progress] 69% building 2104/2133 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-space/index.js - [webpack.Progress] 69% building 2104/2134 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsConstructor.js - [webpack.Progress] 69% building 2105/2134 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsConstructor.js - [webpack.Progress] 69% building 2106/2134 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsConstructor.js - [webpack.Progress] 69% building 2107/2134 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsConstructor.js - [webpack.Progress] 69% building 2108/2134 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsConstructor.js - [webpack.Progress] 69% building 2109/2134 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsConstructor.js - [webpack.Progress] 69% building 2110/2134 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsConstructor.js - [webpack.Progress] 69% building 2111/2134 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsConstructor.js - [webpack.Progress] 69% building 2111/2135 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-to-primitive/helpers/isPrimitive.js - [webpack.Progress] 69% building 2112/2135 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-to-primitive/helpers/isPrimitive.js - [webpack.Progress] 69% building 2113/2135 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-to-primitive/helpers/isPrimitive.js - [webpack.Progress] 69% building 2114/2135 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-to-primitive/helpers/isPrimitive.js - [webpack.Progress] 69% building 2114/2136 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2114/2137 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/get-symbol-description/index.js - [webpack.Progress] 69% building 2114/2138 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IsConstructor.js - [webpack.Progress] 69% building 2114/2139 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IsInteger.js - [webpack.Progress] 69% building 2114/2140 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Call.js - [webpack.Progress] 69% building 2114/2141 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/HasProperty.js - [webpack.Progress] 69% building 2114/2142 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/LengthOfArrayLike.js - [webpack.Progress] 69% building 2114/2143 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/ToString.js - [webpack.Progress] 69% building 2114/2144 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Set.js - [webpack.Progress] 69% building 2114/2145 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/SpeciesConstructor.js - [webpack.Progress] 69% building 2114/2146 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/GetMethod.js - [webpack.Progress] 69% building 2114/2147 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/GetIterator.js - [webpack.Progress] 69% building 2114/2148 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorClose.js - [webpack.Progress] 69% building 2114/2149 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorStep.js - [webpack.Progress] 68% building 2114/2150 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2115/2150 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2116/2150 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2117/2150 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2118/2150 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2119/2150 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2120/2150 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2121/2150 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2122/2150 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2123/2150 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2124/2150 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2125/2150 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2126/2150 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2127/2150 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2128/2150 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2129/2150 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2130/2150 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2131/2150 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2132/2150 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2133/2150 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2134/2150 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorValue.js - [webpack.Progress] 69% building 2134/2151 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js - [webpack.Progress] 69% building 2135/2151 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js - [webpack.Progress] 69% building 2136/2151 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.matchall/helpers/RegExpStringIterator.js - [webpack.Progress] 69% building 2136/2152 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/attention.js - [webpack.Progress] 69% building 2136/2153 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/autolink.js - [webpack.Progress] 69% building 2136/2154 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/blank-line.js - [webpack.Progress] 69% building 2136/2155 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/block-quote.js - [webpack.Progress] 69% building 2136/2156 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/character-escape.js - [webpack.Progress] 69% building 2136/2157 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/character-reference.js - [webpack.Progress] 69% building 2136/2158 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/code-fenced.js - [webpack.Progress] 69% building 2136/2159 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/code-indented.js - [webpack.Progress] 69% building 2136/2160 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/code-text.js - [webpack.Progress] 69% building 2136/2161 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/content.js - [webpack.Progress] 69% building 2136/2162 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/definition.js - [webpack.Progress] 69% building 2136/2163 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/hard-break-escape.js - [webpack.Progress] 69% building 2136/2164 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/heading-atx.js - [webpack.Progress] 69% building 2136/2165 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/html-flow.js - [webpack.Progress] 69% building 2136/2166 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/html-text.js - [webpack.Progress] 69% building 2136/2167 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/label-end.js - [webpack.Progress] 69% building 2136/2168 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/label-start-image.js - [webpack.Progress] 69% building 2136/2169 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/label-start-link.js - [webpack.Progress] 69% building 2136/2170 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/line-ending.js - [webpack.Progress] 69% building 2136/2171 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/list.js - [webpack.Progress] 69% building 2136/2172 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/setext-underline.js - [webpack.Progress] 68% building 2136/2173 modules 37 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/thematic-break.js - [webpack.Progress] 69% building 2137/2173 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/thematic-break.js - [webpack.Progress] 69% building 2138/2173 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/lib/thematic-break.js - [webpack.Progress] 69% building 2138/2174 modules 36 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-character/lib/unicode-punctuation-regex.js - [webpack.Progress] 69% building 2139/2174 modules 35 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-character/lib/unicode-punctuation-regex.js - [webpack.Progress] 69% building 2140/2174 modules 34 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-character/lib/unicode-punctuation-regex.js - [webpack.Progress] 69% building 2141/2174 modules 33 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-character/lib/unicode-punctuation-regex.js - [webpack.Progress] 69% building 2142/2174 modules 32 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-character/lib/unicode-punctuation-regex.js - [webpack.Progress] 69% building 2143/2174 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-character/lib/unicode-punctuation-regex.js - [webpack.Progress] 69% building 2144/2174 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-character/lib/unicode-punctuation-regex.js - [webpack.Progress] 69% building 2144/2175 modules 31 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js - [webpack.Progress] 69% building 2145/2175 modules 30 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js - [webpack.Progress] 69% building 2146/2175 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js - [webpack.Progress] 69% building 2147/2175 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js - [webpack.Progress] 69% building 2148/2175 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js - [webpack.Progress] 69% building 2149/2175 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js - [webpack.Progress] 69% building 2150/2175 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/GetIntrinsic.js - [webpack.Progress] 69% building 2150/2176 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit-parents/index.js - [webpack.Progress] 69% building 2150/2177 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/sha/common.js - [webpack.Progress] 69% building 2151/2177 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/hash.js/lib/hash/sha/common.js - [webpack.Progress] 69% building 2151/2178 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/GetIntrinsic.js - [webpack.Progress] 69% building 2151/2179 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padstart/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2151/2180 modules 29 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2152/2180 modules 28 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2153/2180 modules 27 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2154/2180 modules 26 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2155/2180 modules 25 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2156/2180 modules 24 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2157/2180 modules 23 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2158/2180 modules 22 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2159/2180 modules 21 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2160/2180 modules 20 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2161/2180 modules 19 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2162/2180 modules 18 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2163/2180 modules 17 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2164/2180 modules 16 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2165/2180 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2166/2180 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2167/2180 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2168/2180 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2169/2180 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2170/2180 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2171/2180 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/string.prototype.padend/node_modules/es-abstract/5/ToPrimitive.js - [webpack.Progress] 69% building 2171/2181 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/DefinePropertyOrThrow.js - [webpack.Progress] 69% building 2172/2181 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/DefinePropertyOrThrow.js - [webpack.Progress] 69% building 2173/2181 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/DefinePropertyOrThrow.js - [webpack.Progress] 69% building 2174/2181 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/DefinePropertyOrThrow.js - [webpack.Progress] 69% building 2175/2181 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/DefinePropertyOrThrow.js - [webpack.Progress] 69% building 2175/2182 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/node_modules/es-abstract/2021/Type.js - [webpack.Progress] 69% building 2175/2183 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/node_modules/es-abstract/2021/PromiseResolve.js - [webpack.Progress] 69% building 2176/2183 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/node_modules/es-abstract/2021/PromiseResolve.js - [webpack.Progress] 69% building 2177/2183 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/node_modules/es-abstract/2021/PromiseResolve.js - [webpack.Progress] 69% building 2178/2183 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/node_modules/es-abstract/2021/PromiseResolve.js - [webpack.Progress] 69% building 2178/2184 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/abs.js - [webpack.Progress] 69% building 2178/2185 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/DefinePropertyOrThrow.js - [webpack.Progress] 69% building 2178/2186 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/floor.js - [webpack.Progress] 69% building 2178/2187 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorNext.js - [webpack.Progress] 69% building 2178/2188 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/AdvanceStringIndex.js - [webpack.Progress] 69% building 2178/2189 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/getIteratorMethod.js - [webpack.Progress] 69% building 2178/2190 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IteratorComplete.js - [webpack.Progress] 69% building 2178/2191 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/GetV.js - [webpack.Progress] 69% building 2179/2191 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/GetV.js - [webpack.Progress] 69% building 2180/2191 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/GetV.js - [webpack.Progress] 69% building 2180/2192 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit-parents/color.browser.js - [webpack.Progress] 69% building 2181/2192 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit-parents/color.browser.js - [webpack.Progress] 69% building 2182/2192 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit-parents/color.browser.js - [webpack.Progress] 69% building 2183/2192 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/react-markdown/node_modules/unist-util-visit-parents/color.browser.js - [webpack.Progress] 69% building 2183/2193 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CreateIterResultObject.js - [webpack.Progress] 69% building 2183/2194 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/OrdinaryObjectCreate.js - [webpack.Progress] 69% building 2183/2195 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/RegExpExec.js - [webpack.Progress] 69% building 2183/2196 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-date-object/index.js - [webpack.Progress] 69% building 2183/2197 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2184/2197 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2185/2197 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2186/2197 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2187/2197 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2188/2197 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2189/2197 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2190/2197 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2191/2197 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2192/2197 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2193/2197 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2194/2197 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2194/2198 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/regexp.prototype.flags/index.js - [webpack.Progress] 69% building 2195/2198 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/regexp.prototype.flags/index.js - [webpack.Progress] 69% building 2195/2199 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/index.js - [webpack.Progress] 69% building 2195/2200 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/iterate-value/index.js - [webpack.Progress] 69% building 2196/2200 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/iterate-value/index.js - [webpack.Progress] 69% building 2197/2200 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/iterate-value/index.js - [webpack.Progress] 69% building 2197/2201 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/node_modules/parse-entities/decode-entity.js - [webpack.Progress] 69% building 2197/2202 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/FromPropertyDescriptor.js - [webpack.Progress] 69% building 2197/2203 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsAccessorDescriptor.js - [webpack.Progress] 69% building 2197/2204 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsPropertyKey.js - [webpack.Progress] 69% building 2197/2205 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/SameValue.js - [webpack.Progress] 69% building 2197/2206 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/IsDataDescriptor.js - [webpack.Progress] 69% building 2197/2207 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/ToPropertyDescriptor.js - [webpack.Progress] 69% building 2198/2207 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/ToPropertyDescriptor.js - [webpack.Progress] 69% building 2198/2208 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isPropertyDescriptor.js - [webpack.Progress] 69% building 2198/2209 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/DefineOwnProperty.js - [webpack.Progress] 69% building 2198/2210 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2199/2210 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2200/2210 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.allsettled/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2200/2211 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/isPropertyDescriptor.js - [webpack.Progress] 69% building 2200/2212 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/IsAccessorDescriptor.js - [webpack.Progress] 69% building 2200/2213 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/Invoke.js - [webpack.Progress] 69% building 2200/2214 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2201/2214 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2202/2214 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2203/2214 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2204/2214 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2205/2214 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2206/2214 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2207/2214 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2208/2214 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2209/2214 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2210/2214 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2211/2214 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2212/2214 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 69% building 2213/2214 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/CodePointAt.js - [webpack.Progress] 70% building 2214/2214 modules 0 active - [webpack.Progress] 69% building 2214/2215 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/regexp.prototype.flags/implementation.js - [webpack.Progress] 69% building 2214/2216 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/regexp.prototype.flags/polyfill.js - [webpack.Progress] 69% building 2214/2217 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/regexp.prototype.flags/shim.js - [webpack.Progress] 69% building 2214/2218 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-core-commonmark/node_modules/parse-entities/lib/decode-entity.browser.js - [webpack.Progress] 69% building 2214/2219 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/implementation.js - [webpack.Progress] 69% building 2214/2220 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/polyfill.js - [webpack.Progress] 69% building 2214/2221 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/shim.js - [webpack.Progress] 69% building 2214/2222 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/assertRecord.js - [webpack.Progress] 69% building 2214/2223 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/helpers/isNaN.js - [webpack.Progress] 69% building 2214/2224 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2021/ToBoolean.js - [webpack.Progress] 69% building 2214/2225 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/internal-slot/index.js - [webpack.Progress] 69% building 2214/2226 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-destination/index.js - [webpack.Progress] 69% building 2214/2227 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-title/index.js - [webpack.Progress] 69% building 2214/2228 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-whitespace/index.js - [webpack.Progress] 69% building 2215/2228 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-whitespace/index.js - [webpack.Progress] 69% building 2216/2228 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-whitespace/index.js - [webpack.Progress] 69% building 2216/2229 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-html-tag-name/index.js - [webpack.Progress] 69% building 2217/2229 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-html-tag-name/index.js - [webpack.Progress] 69% building 2217/2230 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-classify-character/index.js - [webpack.Progress] 69% building 2218/2230 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-util-classify-character/index.js - [webpack.Progress] 69% building 2218/2231 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-label/index.js - [webpack.Progress] 69% building 2219/2231 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-label/index.js - [webpack.Progress] 69% building 2220/2231 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-label/index.js - [webpack.Progress] 69% building 2221/2231 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/micromark-factory-label/index.js - [webpack.Progress] 69% building 2221/2232 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/isLeadingSurrogate.js - [webpack.Progress] 69% building 2221/2233 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/helpers/isTrailingSurrogate.js - [webpack.Progress] 69% building 2221/2234 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js - [webpack.Progress] 69% building 2222/2234 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js - [webpack.Progress] 69% building 2222/2235 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2223/2235 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2224/2235 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2225/2235 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2226/2235 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2227/2235 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2228/2235 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2229/2235 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2230/2235 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2231/2235 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2232/2235 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2233/2235 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2234/2235 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/promise.prototype.finally/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 70% building 2235/2235 modules 0 active - [webpack.Progress] 69% building 2235/2236 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/RequireObjectCoercible.js - [webpack.Progress] 69% building 2235/2237 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ArraySpeciesCreate.js - [webpack.Progress] 69% building 2235/2238 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/Call.js - [webpack.Progress] 69% building 2235/2239 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/Get.js - [webpack.Progress] 69% building 2235/2240 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/HasProperty.js - [webpack.Progress] 69% building 2235/2241 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/CreateDataPropertyOrThrow.js - [webpack.Progress] 69% building 2235/2242 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsCallable.js - [webpack.Progress] 69% building 2235/2243 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToUint32.js - [webpack.Progress] 69% building 2235/2244 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToObject.js - [webpack.Progress] 69% building 2235/2245 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 2236/2245 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 2237/2245 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 2238/2245 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 2239/2245 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 2240/2245 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 2241/2245 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 2242/2245 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 2243/2245 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToString.js - [webpack.Progress] 69% building 2244/2245 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToObject.js - [webpack.Progress] 70% building 2245/2245 modules 0 active - [webpack.Progress] 69% building 2245/2246 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/iterate-iterator/index.js - [webpack.Progress] 69% building 2245/2247 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-get-iterator/index.js - [webpack.Progress] 69% building 2246/2247 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-get-iterator/index.js - [webpack.Progress] 70% building 2247/2247 modules 0 active - [webpack.Progress] 69% building 2247/2248 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ArrayCreate.js - [webpack.Progress] 69% building 2247/2249 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsConstructor.js - [webpack.Progress] 69% building 2247/2250 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsIntegralNumber.js - [webpack.Progress] 69% building 2247/2251 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/Type.js - [webpack.Progress] 69% building 2247/2252 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsArray.js - [webpack.Progress] 69% building 2247/2253 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsPropertyKey.js - [webpack.Progress] 69% building 2247/2254 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/CreateDataProperty.js - [webpack.Progress] 69% building 2247/2255 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToNumber.js - [webpack.Progress] 69% building 2247/2256 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2248/2256 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2249/2256 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2250/2256 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2251/2256 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2252/2256 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2253/2256 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2254/2256 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 69% building 2255/2256 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/CheckObjectCoercible.js - [webpack.Progress] 70% building 2256/2256 modules 0 active - [webpack.Progress] 69% building 2256/2257 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/is-string/index.js - [webpack.Progress] 69% building 2256/2258 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/GetIntrinsic.js - [webpack.Progress] 69% building 2256/2259 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-array-method-boxes-properly/index.js - [webpack.Progress] 69% building 2256/2260 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/DefinePropertyOrThrow.js - [webpack.Progress] 69% building 2256/2261 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/abs.js - [webpack.Progress] 69% building 2256/2262 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/floor.js - [webpack.Progress] 69% building 2256/2263 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2257/2263 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2258/2263 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2259/2263 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/5/Type.js - [webpack.Progress] 69% building 2259/2264 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/OrdinaryGetOwnProperty.js - [webpack.Progress] 69% building 2259/2265 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsDataDescriptor.js - [webpack.Progress] 69% building 2259/2266 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/SameValue.js - [webpack.Progress] 69% building 2259/2267 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsExtensible.js - [webpack.Progress] 69% building 2259/2268 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/FromPropertyDescriptor.js - [webpack.Progress] 69% building 2259/2269 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToPrimitive.js - [webpack.Progress] 69% building 2259/2270 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isNaN.js - [webpack.Progress] 69% building 2259/2271 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isFinite.js - [webpack.Progress] 69% building 2259/2272 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/DefineOwnProperty.js - [webpack.Progress] 69% building 2259/2273 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/regexTester.js - [webpack.Progress] 69% building 2259/2274 modules 15 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2260/2274 modules 14 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2261/2274 modules 13 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2262/2274 modules 12 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2263/2274 modules 11 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2264/2274 modules 10 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2265/2274 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2266/2274 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2267/2274 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2268/2274 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2269/2274 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2270/2274 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2271/2274 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2272/2274 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 69% building 2273/2274 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPrimitive.js - [webpack.Progress] 70% building 2274/2274 modules 0 active - [webpack.Progress] 69% building 2274/2275 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/object-inspect/index.js - [webpack.Progress] 69% building 2274/2276 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/is-callable/index.js - [webpack.Progress] 69% building 2274/2277 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToPropertyDescriptor.js - [webpack.Progress] 69% building 2274/2278 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPropertyDescriptor.js - [webpack.Progress] 69% building 2275/2278 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/isPropertyDescriptor.js - [webpack.Progress] 69% building 2275/2279 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsAccessorDescriptor.js - [webpack.Progress] 69% building 2276/2279 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsAccessorDescriptor.js - [webpack.Progress] 69% building 2276/2280 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js - [webpack.Progress] 69% building 2276/2281 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/IsRegExp.js - [webpack.Progress] 69% building 2276/2282 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/helpers/assertRecord.js - [webpack.Progress] 69% building 2276/2283 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-arguments/index.js - [webpack.Progress] 69% building 2276/2284 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-set/index.js - [webpack.Progress] 69% building 2276/2285 modules 9 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-map/index.js - [webpack.Progress] 69% building 2277/2285 modules 8 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-map/index.js - [webpack.Progress] 69% building 2278/2285 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-map/index.js - [webpack.Progress] 69% building 2279/2285 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/is-map/index.js - [webpack.Progress] 69% building 2279/2286 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2279/2287 modules 8 active ignored /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/object-inspect ./util.inspect - [webpack.Progress] 69% building 2280/2287 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2281/2287 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2020/IsArray.js - [webpack.Progress] 69% building 2281/2288 modules 7 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-get-iterator/node_modules/isarray/index.js - [webpack.Progress] 69% building 2282/2288 modules 6 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-get-iterator/node_modules/isarray/index.js - [webpack.Progress] 69% building 2283/2288 modules 5 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-get-iterator/node_modules/isarray/index.js - [webpack.Progress] 69% building 2284/2288 modules 4 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-get-iterator/node_modules/isarray/index.js - [webpack.Progress] 69% building 2285/2288 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-get-iterator/node_modules/isarray/index.js - [webpack.Progress] 69% building 2286/2288 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/es-get-iterator/node_modules/isarray/index.js - [webpack.Progress] 69% building 2286/2289 modules 3 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/has-tostringtag/shams.js - [webpack.Progress] 69% building 2287/2289 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/has-tostringtag/shams.js - [webpack.Progress] 69% building 2288/2289 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/has-tostringtag/shams.js - [webpack.Progress] 69% building 2288/2290 modules 2 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToBoolean.js - [webpack.Progress] 69% building 2289/2290 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/es-abstract/2021/ToBoolean.js - [webpack.Progress] 70% building 2290/2290 modules 0 active - [webpack.Progress] 69% building 2290/2291 modules 1 active /Users/lastexile/code/monday/monday-ui-react-core/node_modules/array.prototype.map/node_modules/is-regex/index.js - [webpack.Progress] 70% building 2291/2291 modules 0 active - [webpack.Progress] 70% building 2291/2291 modules 0 active - [webpack.Progress] 70% finish module graph - [webpack.Progress] 70% finish module graph FlagDependencyExportsPlugin - [webpack.Progress] 70% finish module graph WasmFinalizeExportsPlugin - [webpack.Progress] 70% sealing - [webpack.Progress] 70% sealing WarnCaseSensitiveModulesPlugin - [webpack.Progress] 72% basic dependencies optimization - [webpack.Progress] 72% dependencies optimization - [webpack.Progress] 72% dependencies optimization SideEffectsFlagPlugin - [webpack.Progress] 72% dependencies optimization FlagDependencyUsagePlugin - [webpack.Progress] 73% advanced dependencies optimization - [webpack.Progress] 73% after dependencies optimization - [webpack.Progress] 71% chunk graph - [webpack.Progress] 71% after chunk graph - [webpack.Progress] 71% after chunk graph WebAssemblyModulesPlugin - [webpack.Progress] 74% optimizing - [webpack.Progress] 74% basic module optimization - [webpack.Progress] 75% module optimization - [webpack.Progress] 75% advanced module optimization - [webpack.Progress] 76% after module optimization - [webpack.Progress] 76% basic chunk optimization - [webpack.Progress] 76% basic chunk optimization EnsureChunkConditionsPlugin - [webpack.Progress] 76% basic chunk optimization RemoveParentModulesPlugin - [webpack.Progress] 76% basic chunk optimization RemoveEmptyChunksPlugin - [webpack.Progress] 76% basic chunk optimization MergeDuplicateChunksPlugin - [webpack.Progress] 77% chunk optimization - [webpack.Progress] 77% advanced chunk optimization - [webpack.Progress] 77% advanced chunk optimization SplitChunksPlugin - [webpack.Progress] 77% advanced chunk optimization RuntimeChunkPlugin - [webpack.Progress] 77% advanced chunk optimization RemoveEmptyChunksPlugin - [webpack.Progress] 77% after chunk optimization - [webpack.Progress] 78% module and chunk tree optimization - [webpack.Progress] 78% module and chunk tree optimization PersistentChildCompilerSingletonPlugin - [webpack.Progress] 78% after module and chunk tree optimization - [webpack.Progress] 79% basic chunk modules optimization - [webpack.Progress] 80% chunk modules optimization - [webpack.Progress] 80% chunk modules optimization ModuleConcatenationPlugin - [webpack.Progress] 80% advanced chunk modules optimization - [webpack.Progress] 81% after chunk modules optimization - [webpack.Progress] 81% module reviving - [webpack.Progress] 81% module reviving RecordIdsPlugin - [webpack.Progress] 82% module order optimization - [webpack.Progress] 82% advanced module order optimization - [webpack.Progress] 83% before module ids - [webpack.Progress] 83% before module ids NamedModulesPlugin - [webpack.Progress] 83% module ids - [webpack.Progress] 84% module id optimization - [webpack.Progress] 84% module id optimization - [webpack.Progress] 85% chunk reviving - [webpack.Progress] 85% chunk reviving RecordIdsPlugin - [webpack.Progress] 85% chunk order optimization - [webpack.Progress] 85% chunk order optimization OccurrenceOrderChunkIdsPlugin - [webpack.Progress] 86% before chunk ids - [webpack.Progress] 86% chunk id optimization - [webpack.Progress] 86% chunk id optimization FlagIncludedChunksPlugin - [webpack.Progress] 87% after chunk id optimization - [webpack.Progress] 87% record modules - [webpack.Progress] 87% record modules RecordIdsPlugin - [webpack.Progress] 87% record chunks - [webpack.Progress] 87% record chunks RecordIdsPlugin - [webpack.Progress] 88% hashing - [webpack.Progress] 88% after hashing - [webpack.Progress] 89% record hash - [webpack.Progress] 89% module assets processing - [webpack.Progress] 90% chunk assets processing - [webpack.Progress] 90% additional chunk assets processing - [webpack.Progress] 91% recording - [webpack.Progress] 92% additional asset processing - [webpack.Progress] 92% additional asset processing PersistentChildCompilerSingletonPlugin - [webpack.Progress] 92% chunk asset optimization - [webpack.Progress] 92% chunk asset optimization TerserPlugin - [webpack.Progress] 93% after chunk asset optimization - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 0.8314df40.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 1.e985bb82.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 2.29b40ce1.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin main.6d1a0db0.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin runtime~main.81c1d8e4.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin vendors~main.892250b5.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 6.b7a99208.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 7.aec2f8a4.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 8.511a470c.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 9.e1a444c0.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 10.019ecb63.iframe.bundle.js generate SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin resolve sources - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 0.8314df40.iframe.bundle.js attach SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin vendors~main.892250b5.iframe.bundle.js attach SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 6.b7a99208.iframe.bundle.js attach SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin 9.e1a444c0.iframe.bundle.js attach SourceMap - [webpack.Progress] 93% after chunk asset optimization SourceMapDevToolPlugin - [webpack.Progress] 93% asset optimization - [webpack.Progress] 94% after asset optimization - [webpack.Progress] 94% after seal - [webpack.Progress] 95% emitting - [webpack.Progress] 95% emitting HtmlWebpackPlugin - [webpack.Progress] 98% after emitting - [webpack.Progress] 98% after emitting SizeLimitsPlugin - [webpack.Progress] 100% - -info => Preview built (33 s) -WARN asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). -WARN This can impact web performance. -WARN Assets: -WARN static/media/Sahar.28b13cdd.png (246 KiB) -WARN main.6d1a0db0.iframe.bundle.js (3.79 MiB) -WARN vendors~main.892250b5.iframe.bundle.js (2.74 MiB) -WARN 6.b7a99208.iframe.bundle.js (1.36 MiB) -WARN entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance. -WARN Entrypoints: -WARN main (6.54 MiB) -WARN runtime~main.81c1d8e4.iframe.bundle.js -WARN vendors~main.892250b5.iframe.bundle.js -WARN main.6d1a0db0.iframe.bundle.js -WARN -info => Output directory: /var/folders/fq/txf8djz51rqcv1k3418jxv_00000gn/T/chromatic--89944-soVnD5ONcc5R diff --git a/src/components/AlertBanner/__stories__/AlertBanner.stories.js b/src/components/AlertBanner/__stories__/AlertBanner.stories.js deleted file mode 100644 index 9b1d057eb2..0000000000 --- a/src/components/AlertBanner/__stories__/AlertBanner.stories.js +++ /dev/null @@ -1,74 +0,0 @@ -import React from "react"; -import { boolean, number, select, color, text } from "@storybook/addon-knobs"; -import AlertBanner from "../AlertBanner"; -import AlertBannerText from "../AlertBannerText/AlertBannerText"; -import AlertBannerLink from "../AlertBannerLink/AlertBannerLink"; -import AlertBannerButton from "../AlertBannerButton/AlertBannerButton"; -import Button from "../../Button/Button"; - -export const Sandbox = () => ( -
- - - - - - -
-); - -export const Overflowing = () => ( -
- - - - - - -
-); - -export const AlertBannerWithButtons = () => { - const backgroundColor = select( - "Background color", - Object.values(AlertBanner.backgroundColors), - AlertBanner.backgroundColors.RPIMARY - ); - return ( -
- - - {/* we need to change key when backgroundColor changes to trigger button text color calculation */} - console.log("button clicked")}> - Lorem Ipsum - - -
- ); -}; - -export default { - title: "Components|AlertBanner", - component: AlertBanner -}; diff --git a/src/components/AlertBanner/__stories__/alertBanner.stories.mdx b/src/components/AlertBanner/__stories__/alertBanner.stories.mdx new file mode 100644 index 0000000000..02b5d1beb0 --- /dev/null +++ b/src/components/AlertBanner/__stories__/alertBanner.stories.mdx @@ -0,0 +1,208 @@ +import { ArgsTable, Story, Canvas, Meta } from "@storybook/addon-docs"; +import AlertBanner from "../AlertBanner"; +import AlertBannerText from "../AlertBannerText/AlertBannerText"; +import AlertBannerLink from "../AlertBannerLink/AlertBannerLink"; +import AlertBannerButton from "../AlertBannerButton/AlertBannerButton.jsx" +import { Link } from "../../../storybook/components"; +import { createComponentTemplate } from "../../../storybook/functions/create-component-story"; +import { TOOLTIP, ATTENTION_BOX, TOAST } from "../../../storybook/components/related-components/component-description-map"; +import "./alertBanner.stories.scss"; + + + + + +export const alertBannerTemplate = (args) => { + return ( + + + ); +} + + + +# Alert Banner +- [Overview](#overview) +- [Props](#props) +- [Usage](#usage) +- [Variants](#variants) +- [Do’s and don’ts](#dos-and-donts) +- [Use cases and examples](#use-cases-and-examples) +- [Related components](#related-components) +- [Feedback](#feedback) + +## Overview +Alert banners show pressing and high-signal messages, such as system alerts. They are meant to be noticed and prompt users to take action. + + + + { alertBannerTemplate.bind({ }) } + + + +## Props + + +## Usage + + +Alert banners should be reserved only for high-signal, system-level alert messages. For in-app notifications use a Toast. + +## Variants +### Types +There are four types of alert banners: primary, negative, positive, and inverted. + + +
+ + + + + + + + + + + + + + + + +
+
+
+ +### Alert Banner with button + + + + + Lorem Ipsum + + + + +### Alert Banner with link + + + + + + + + + +## Do’s and Don’ts + + + + , + description: "Use banners for system messages, background processes, and general updates." + }, + negative: { + component: + + + , + description: <>Don’t use banners for notifying a user of an action they have taken. Instead, provide visual feedback with a Toast. + } + }, + { + positive: { + component: + + + + Try again + , + description: "If two actions are needed, use two different call to acitons." + }, + negative: { + component: +
+ + + + + + + + Learn more + Try again + +
, + description: "Don't include more than one action in an alert banner with the same type." + } + }, + { + positive: { + component: + + + + , + description: "Use only the 4 color types: primary, negative, positive, and inverted." + }, + negative: { + component: + + + + , + description: "Don’t choose other colors for alert banners. Keep it consistent." + } + } + ]} +/> + +## Use cases and examples +### Alert banner as an announcement +Use when you’d like to notify about an event or cross-company announcment. + + + + + + + + + +### Alert banner as an opportunity to upgrade +Use to show a trial user the number of remaining free days to use the platform. + + + + + + + + + +### Overflow text +In case that there’s not enough space for the conent, use an ellipses (...). + + + + + + + + + +## Related components + \ No newline at end of file diff --git a/src/components/AlertBanner/__stories__/alertBanner.stories.scss b/src/components/AlertBanner/__stories__/alertBanner.stories.scss new file mode 100644 index 0000000000..a4a080520e --- /dev/null +++ b/src/components/AlertBanner/__stories__/alertBanner.stories.scss @@ -0,0 +1,33 @@ +@import "../../../styles/themes.scss"; + +.monday-storybook-alert-banner { + &_column-wrapper { + display: flex; + flex-direction: column; + gap: 16px; + } + + &_big-container { + width: 610px; + } + + &_small-container { + width: 320px; + } + + &_medium-container { + width: 392px; + } + + &_pink { + .monday-alert-banner__close-button-wrapper { + @include theme-prop(background, private-color); + } + .monday-alert-banner__inner { + @include theme-prop(background, private-color); + } + .monday-alert-banner__alert-banner-close-btn { + @include theme-prop(background, private-color); + } + } +} diff --git a/src/components/AlertBanner/__tests__/AlertBanner-test.js b/src/components/AlertBanner/__tests__/AlertBanner-test.js deleted file mode 100644 index 47e1c5a48b..0000000000 --- a/src/components/AlertBanner/__tests__/AlertBanner-test.js +++ /dev/null @@ -1,62 +0,0 @@ -import React from "react"; -import { render, cleanup, fireEvent } from "@testing-library/react"; -import { expect } from "../../../test/test-helpers"; -import AlertBanner from "../AlertBanner"; -import AlertBannerLink from "../AlertBannerLink/AlertBannerLink"; -import AlertBannerButton from "../AlertBannerButton/AlertBannerButton"; -import AlertBannerText from "../AlertBannerText/AlertBannerText"; - -const NOOP = () => {}; - -describe("", () => { - afterEach(() => { - cleanup(); - }); - - it("should be able to render alert banner", () => { - const { container } = render(); - }); - - it("should be able to render alert banner with link and text", () => { - const { container } = render( - - - - - ); - }); - - it("should be able to render alert banner with text and button", () => { - const { container } = render( - - - Lorem Ipsum Salura - - ); - }); - - describe("on close", () => { - let onCloseStub; - let alertBannerComponent; - beforeEach(() => { - onCloseStub = sinon.stub(); - alertBannerComponent = render( - - - Lorem Ipsum Salura - - ); - }); - - afterEach(() => { - onCloseStub.reset(); - cleanup(); - }); - - it("should be able to close alert banner when clicking on close button", () => { - const { container } = alertBannerComponent; - fireEvent.click(container.querySelector(".monday-alert-banner__alert-banner-close-btn")); - expect(onCloseStub).to.be.calledOnce; - }); - }); -}); diff --git a/src/components/AlertBanner/__tests__/__snapshots__/AlertBanner.jest.js.snap b/src/components/AlertBanner/__tests__/__snapshots__/AlertBanner.jest.js.snap deleted file mode 100644 index 10fd6c79f4..0000000000 --- a/src/components/AlertBanner/__tests__/__snapshots__/AlertBanner.jest.js.snap +++ /dev/null @@ -1,267 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`AlertBanner should render correctly with hidden close button 1`] = ` -
-
-
-
-`; - -exports[`AlertBanner should render correctly without props 1`] = ` -
-
-
-
-
-
-`; - -exports[`AlertBanner should render with correctly with multiple elements 1`] = ` -
-
-
-
-
- - Lorem ipsum dolor sit amet, consectetur adipiscing elit - -
-
-
- -
-
-
- - sed do eiusmod tempor incididunt ut labore et dolore magna aliqua - -
-
-
-
-
-
-
-
-
-
-
-
-
-`; - -exports[`AlertBanner should render with correctly with text and link 1`] = ` -
-
-
-
-
- - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua - -
-
-
- -
-
-
-
-
-`; - -exports[`AlertBanner should render with correctly with text and link 2`] = ` -
-
-
-
-
- - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua - -
-
-
-
-
-
-
-
-
-
-
-
-
-`; - -exports[`AlertBanner shuold render correctly with props 1`] = ` -
-
-
-
-
- - Lorem ipsum dolor sit amet - -
-
-
-
-
-
-
-
-`; diff --git a/src/components/AlertBanner/__tests__/__snapshots__/alertBanner-snapshot-tests.jest.js.snap b/src/components/AlertBanner/__tests__/__snapshots__/alertBanner-snapshot-tests.jest.js.snap new file mode 100644 index 0000000000..c8bc3124c1 --- /dev/null +++ b/src/components/AlertBanner/__tests__/__snapshots__/alertBanner-snapshot-tests.jest.js.snap @@ -0,0 +1,455 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`AlertBanner should render correctly with background color 1`] = ` +
+
+
+ +
+
+`; + +exports[`AlertBanner should render correctly with hidden close button 1`] = ` +
+
+
+
+`; + +exports[`AlertBanner should render correctly without props 1`] = ` +
+
+
+ +
+
+`; + +exports[`AlertBanner should render with correctly with multiple elements 1`] = ` +
+
+
+
+
+ + Lorem ipsum dolor sit amet, consectetur adipiscing elit + +
+
+
+ +
+
+
+ + sed do eiusmod tempor incididunt ut labore et dolore magna aliqua + +
+
+
+
+
+ +
+
+
+
+ +
+
+`; + +exports[`AlertBanner should render with correctly with text and button 1`] = ` +
+
+
+
+
+ + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua + +
+
+
+
+
+ +
+
+
+
+ +
+
+`; + +exports[`AlertBanner should render with correctly with text and link 1`] = ` +
+
+
+
+
+ + Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua + +
+
+
+ +
+
+ +
+
+`; + +exports[`AlertBanner shuold render correctly with props 1`] = ` +
+
+
+
+
+ + Lorem ipsum dolor sit amet + +
+
+
+
+
+ +
+
+`; diff --git a/src/components/AlertBanner/__tests__/AlertBanner.jest.js b/src/components/AlertBanner/__tests__/alertBanner-snapshot-tests.jest.js similarity index 82% rename from src/components/AlertBanner/__tests__/AlertBanner.jest.js rename to src/components/AlertBanner/__tests__/alertBanner-snapshot-tests.jest.js index fe6c99ccca..74bf4a0f5b 100644 --- a/src/components/AlertBanner/__tests__/AlertBanner.jest.js +++ b/src/components/AlertBanner/__tests__/alertBanner-snapshot-tests.jest.js @@ -1,5 +1,4 @@ import React from "react"; -// import PropTypes from "prop-types"; import renderer from "react-test-renderer"; import AlertBanner from "../AlertBanner"; import AlertBannerLink from "../AlertBannerLink/AlertBannerLink"; @@ -7,25 +6,7 @@ import AlertBannerButton from "../AlertBannerButton/AlertBannerButton"; import AlertBannerText from "../AlertBannerText/AlertBannerText"; import { NOOP } from "../../../utils/function-utils"; -jest.mock("../../Button/Button", () => { - const Button = ({ onClick }) => ( -
- ); - - Button.sizes = {}; - Button.kinds = {}; - Button.colors = {}; - Button.propTypes = {}; - Button.defaultProps = {}; - - return Button; -}); - describe("AlertBanner", () => { - const mockText = "mock title"; - const mockLinkText = "mock Subtitle"; - const mockLinkHref = "https://monday.com/mocklink?a=1"; - it("should render correctly without props", () => { const tree = renderer.create().toJSON(); expect(tree).toMatchSnapshot(); @@ -59,7 +40,7 @@ describe("AlertBanner", () => { expect(tree).toMatchSnapshot(); }); - it("should render with correctly with text and link", () => { + it("should render with correctly with text and button", () => { const tree = renderer .create( @@ -89,4 +70,9 @@ describe("AlertBanner", () => { const tree = renderer.create().toJSON(); expect(tree).toMatchSnapshot(); }); + + it("should render correctly with background color", () => { + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); + }); }); diff --git a/src/components/AlertBanner/__tests__/alertBanner-tests.jest.js b/src/components/AlertBanner/__tests__/alertBanner-tests.jest.js new file mode 100644 index 0000000000..64791144c5 --- /dev/null +++ b/src/components/AlertBanner/__tests__/alertBanner-tests.jest.js @@ -0,0 +1,45 @@ +import React from "react"; +import { render, cleanup, fireEvent } from "@testing-library/react"; +import AlertBanner from "../AlertBanner"; +import AlertBannerButton from "../AlertBannerButton/AlertBannerButton"; +import AlertBannerText from "../AlertBannerText/AlertBannerText"; + +const NOOP = () => {}; + +describe("", () => { + afterEach(() => { + cleanup(); + }); + + describe("on close", () => { + let onCloseStub; + let alertBannerComponent; + + beforeEach(() => { + onCloseStub = jest.fn(); + alertBannerComponent = render( + + + Lorem Ipsum Salura + + ); + }); + + it("should be able to close alert banner when clicking on close button", () => { + const { container } = alertBannerComponent; + fireEvent.click(container.querySelector(".monday-alert-banner__alert-banner-close-btn")); + expect(onCloseStub.mock.calls.length).toBe(1); + }); + + describe("a11y", () => { + it("should add the label", () => { + const ariaLabel = "Lable Name"; + const { getByLabelText } = render( + + ); + const alertBannerComponent = getByLabelText(ariaLabel); + expect(alertBannerComponent).toBeTruthy(); + }); + }); + }); +}); diff --git a/src/components/AttentionBox/__stories__/assets/person.png b/src/components/AttentionBox/__stories__/assets/person.png new file mode 100644 index 0000000000000000000000000000000000000000..6b5ce8c766febd20d5e9604194cde29b95768739 GIT binary patch literal 35627 zcmV)@K!LxBP)004R>004l5008;`004mK004C`008P>0026e000+ooVrmw00006 zVoOIv0RI600RN!9r;`8x00(qQO+^Rf3Iqxc2pJq)r~m+f07*naRCwCt{dur$d3M(a zetyH=`wVw}^UFCaYgCPzO9)8@4Im&05Tdc6-IlT49W)J%>6Wkq0u$Iw4&jEtI1H$9 zsG-3K+{VqIsgMwwRYO)*DN|XM^PAth{vE!3{H0qM6e!S2$=xWt3#GOCK&g0D8y+`GJ)u>6LTMfWbww$4!N87E zOqEh2zyc;ctyfC97-Iu0ff;ZF+yicf7+;Ty*JI?37`Y4jI7HWlpolT1JH!a@c=XyA z`w)G>Zt9Eu20q`nkA3zg3Q$U+6hx<#Ht|3!^`zGNJxcLjrFgf}JYh7KwPHsrHBuU_ z)cWuA#=%kQmw%W-j3FwT7}YGsct1v74>7(FBcF~jJ|AOzEk=%mk1>Quh>@t^y-z;+ z#XfYO*W14nhV{`GZV`0=7101nZ)>HV0lq@PhmBGn)LK8Gl-g5DDWxM?MYL9!Y)l%& zu;ifVjRT~9iNh4ruVaj$AOaCZj1WQ)Vjt>X)$QLp!}^IA?j+Bk(8`ZYRPR&ptxAP&QA)j6Yqh-& zX)1Xky%FLzj7z1vR_DBxQZX4}TzjzmfQN4>XL|Vi00g2KR1iZ6F@?SmiGkt!5Cb8q zIU#-;_yOQw1mdTn4^4iV554QDFZQAT72W==F{~f|^j*-A5Hwo*Yrr=t6@Q;beT`D_ zf+i;Kqfk1BHjU1nCK(pwke8DAWH{*|Xh3Jf(s6Bk4;j_)zwC)r@?KG1K)h5SL*!9RiBSPolcD$2+6q z_ksHM2=7s7tB5EaF)9xElGfQ{>A{FpOa`SRkd15|+%)SPORE$n%|_V#T$xrBZxlB| zT|TT{aw~b*Id3K5Foc*4F6Uu!2(9wHaxwBe#P0+CaZ!$5?Ald~5x(p_Z~J1OnqTzx z8`iLX?77=0ttiS`b#C&$82JyC;@dzy8B@)s&?yNIXvDh=AxVvPR; z)b}cFKjmE)A@b#4@{TX|sd~%XZ#cvH(NEq)sYq`u6}%_He;k$m10m{1;!p~VR%k8Qmpo@gZ5Ya%k7n{tDed2Q zS}~N63@peuo5qzN6GBLTmpmA2gH7-CR*d{Zi2u*ks(*ewHpHm-%J==oGO*t;hV>)Q zzJ^kYs0^C$s8aSjQ06;=(oe}DO>qfQ;*J=M668|rfK~y$k+kc3gpV|+En z_;(@x-JsM>g(7x}ulmq4U+hzv-r;Y6+ebd}1}KeD{WMa3n?n6xQR+h|L)7U6ZJaEn z6h^BA2`G$;Xzj(2$a$6|;8uf9Nxar66a`Q89`8LNxO8&G(1LgAgv;G%jWL=SJz5*I zmcSX3*HKzyv_@%-)*7^x@3Vm=*ny}vJW*JOylmi~%fQ$)E?^^{OSex%_pG zV~l+D2j2e0KBZq=!}{S*-b95!d-xcmOE9ANbQ+Z-=MCa)Hnv=r^yzr?Pc<$Lxa_9B~nx-X&$apfQC@k72#^W(Q z1XimRP2JLWJwj5!B= zth4)dc#OG!nEoF&LS=Gp#OM>?%Gz^5DgvU9G5!ms)PJQ7ACE!t)$jlH4~@UBhV?@~ zcMA+CLZuY{0q|!)Jtf8?Z$+t$8^z(oiLq(W8l_AMg<2{$6_QbjVdac{XdFiXPjn9N zTiWG<*I)VtKJn3y^YTk?uw1U_`kub)@jhU!kQmyw#b}d^%j2EL^&V7Axmmym35_xN zB4do?Swz576a`yb6W;O8xAWnz{|4UvCGTf4-5PKC;a@!e~wT5?9Xxk!3ne3g1V`3 zy^~~IDXOv}#z@;X6xK4CZV^JH>pJ?*;e8Z+hRaPlNl{#jw8rV|NJ{O4Yp|rT$7JezO{)fg0K+Lnzz`YwMqhw^GWSYu60z z76m3HT}mklCBY8~`f7H{^B?LHnY6wAo7Gp%AFh*gF7+7xGRHb2ecghDo_#wXjxBpHadHe}%3b~q? z+D>{1huN@lazBL1xJK>6xyRM7Ar9K>!j~aS-IjJ3*#b%?T%En~S$`X@t=^@;yb)KWet4Zo2 zc$D*w#eB}Ee(opu=uiF>hli(}&CY1MZs5D9bV8l;#ON{BV63IAMgTbH@ZJyDn0QBn z)`ko{cpu2!fEdN_bjk%o@N~V$^^U{)_c*$9i~Wli+1cAe>4Eh{#K>JKVlua&6j3P< z7+6>nN+Z1nL)iSk(&rwB(nO_HL_ZVZ>omOlbw}U*@^Ai=|1017KYaHW^t^vTJ=PC= z{2oq4qa%M%!CzA7YtpL|{E3vCq_evLZsxmQpG<8~r0|ge(9~eo2_etyyo^&h-?3WE zdH&~qhM)bhk8t`_({5}T$S!V@TrHYxmgv{u9r zXxo;$X>rb@Q52<3-p@eHxUM2bPf=(_mE|38e>>m&d%lggf613nlq0mZVi-ztw2+~R z?5WsD?9YA8y~-RK)c{`%easXiBi!+*KNX_;`^t>{H@^4M7wp{IFVqwN%a7g#VyPql zXO#N0N~v8f^&XI&#rpqB$<;Z8Kdr_16zNLb^l0aq3Q=ofW{jrr;bWxjI$rzCXL$Cf zev12dk6A2gy!RW4dWq744|y+O=wvcxRE>#1T`xgF@IHA^Gr$XysEc(M#h7YTvRpJY zZOf`&Np4kE7^^9@MJw@0eeZzCXFvNA`hWZXpcK6AOFn=tZDLudzEixfmD%+UY z413YAI~C_WsaK=IT6`#$t8r>6FcdY(N``-9 zGMeGH>wid>*AP}W+vQQ6djbo56$%Ud)c@g+e5d=~zxm&O-fTht+MhyhKk$j0C@3xQ zI~DOyYGSDe=C|CniWn8x{J7`yrR1&H^k%v8dl-JmUNB$B@*082Vs^@lAO9JS9^7ZS z6pteYss;~LRU@jZ!Wg->f)4~Auv$@AJ$NrczI`&NNZA58A*7b^}t%*Sr z{;uuV-r8b+e@~Entyt9!bzKvQ_|RdDRI`g^&2u078GhjtAEl}5H6pKKqDilhv(g)$ zd!rLE(0NKyWMP9L_n~w#7M@ z;EIl>UeNbFUE9(3Ez@zy{_YlKQDC&8UbVPB5QBy&MiHXo=K<9DIMAB`IG!_VLUycpK6IeGuVPaL7`O8H*@ zAyoXcF*43{x3%HKfzGn|q4FooVQ>hE8^)9)=Gr^04f&r(rOB;sGBYsQa>;aAfx1hzGvgo zXuNXtMCz4zzuny}VpJ>_HNER;nvU)5ErRn@BMU~jS+`z!nHPTUC)hi<$o}O^C}Y;? zlgd58RCwqCVt?p(Y#iToT!xEv!-HjJg_4444E$N;<58>i_x`KrZpYv9{_9^n!}|V@ z-^Qz!*cacT2!9FK$(5bnn9LizP0V1QT4xOTO4icpzsqb6B#HJh60_&Zm5SQP zd*wv!0Do!Z{XK2@{*Qe6HGb=RpZww&mO`PTc|XLzic(iMGQ)KOnUG%wTpBg=*T zT@DWR*xs5l8kLk*4vh50B*&$3ST`WnrZ`9RiDG!*bO!U#*xeY8ER==(U2j z&@^q$*4C7r?Gdi)=#?1Pcs$1S4q`-?mIxdj9`l)JKg#~4YdreQGuTm?LSY6^*GKo9 z2ZCf&={Rk$PL0ZwLYbyRx**paekG5;s$%@BF{<0v^W3k+Hh$HH_5B~cMO0i-gzpCR zZlXcya6WH}gLNc8G&4Z;z)2s%T@G;@2BmUNbuQOR$9Eu~=N!v(a{mrDUVVvG(@29@ z2}_}_YhnOJz^F*yYD}rv8jZQQzsHr!7rA!zG6(y6R8@giir_ujqh7hN!}8KTAk))$ zj|##*Xq%qJvSqfcIh@TXt&j_6%a-2tnBLMhnsM1vRRvpHW6tI)nzm)q7pT+{im6}O zcRe>>eu-;Oewy72m)O62k!UiG7l&hdp3|iWD3r=H>p)ad8rOv6(O5UN$(}Cb^733N z1{Cq#5WhPr^@o1+*;nsc)l}>8Vx{kZAzRc151!T#DiMp4F;he|MY4JA8;Z@3F?PI6LEwU-&eSKJzZN zcDE@glh$@B2=&KwtVOQ6GFrxo3F=aq1K-7}h4$zBUUt#AeK8D9;dL9kI8Cocpf93?$x`ne+KQJcoI1_sZAG#fL1F;LG= zxp(s>t43Nki^YO^wUUI|IWF(-@cy?w#{1v>G*_=(WNR{}Docv8q$~{9B;ugf17#;h zO^6Yz70x?J)Rn=gis%DQYpm83#?p2@I^{s2542rJ+dI0x$8{YF&2qV-Dho!V5u>W& zq+Kvy)rovgjn(kIN=fIsjpI4GeVYgO?%?{Ku6L}KOI)hhrsInD zJoO0gd)Jd(zk0yl&K6tSTTG^7MpYqGHVG%n{CGtkSXCHfC~QGt^H+;43aU}Xcrsx$ z8B>ibCXSek{5qb2=0q=h1F)m-)V=@^rDoZMBWVB1`gk`Nmg0NKr z-uYpgMk|H21w~n6ivnXbCK=dhGG;oRFrH2rPbO?{jk$Vpm&Yz2aIih4D6D{~y{B`M zTNQ<6G%9J@9_Ks&edp-99-kPYr}rOl=am(&n4d`ag>?s( zFs%yS@#J-`Up-)JYreHQOy={$o76h9Jp(#IS(Tu` z+JdqwF;=)(ZRc3lE%(mmgy89Y1RP!4vppVjdOBxScNE5;v>Hf-RvVh8V_OjZ9o8t=%I2;XMLqf4t9Quczxxa$EO&=Xm;X( zwI2-fxO8HV?%n0Vy?dwtecRJJFQqk+OM5#!{lqnPcefagMgneTqkKp!!4E?V0q-0> zH!%?H+4n9&uzXX9h)@jriPJkv%X^h89N&Wf3p`d2C{cD z*;8pS8fCOh6B#pnMy>TVrPP0cV(VW&|I71QzbwP*%^0Qhw}bj^WK?{E-jZ>qjEv{P zaI@!kE<6sy5DCjd)M9dzT1MrQ>KP-zTJpFe;3s#b4(|82mx_g(+_F{~ec z?k3hZkH@I~L{zGhZo+wr@Hz)lg9p;NY|jP*A~mEVR;RBjV0FZrbk`B9z!E7``n?KR zJXQw^?J-*ZCNaX9pPh2^mDg~=(YuaST@Q=|s}&daci5Ura&3zYNJhMOL%%GflQ=B0(!biG{_rGKxL-*3(Y@b ziC7h}1_~1?b)+=NR~4vqq*72SF{DBz2!A^|~@Mh5z`B@kqt3wbFH-C;c?pgAxue{5jD)V`!L1uC=W_`gY2-c6*zIp^aj>_8v1yQ0so{6R2^0=i zcxdX_JHOUUAQBXWlqdU?Z;=NqVoaD<3QwuhEXsniFpS3)|l+?`yjv2MwKq+%?n!*Q0cfytL824$+%Qf z+#!U)pauiWFozhgB82Y<&b{X&&%XYvH>{wdi821CD#XWBj2i|OQ2614WCVQu;X-Qi zMvM*^?I|`?_p)Bqrp(Z$4yeu;SV~g!fy{}uQu5k;Q*(0vK5f_0dq>|VnsH)rUcRu) z)^vc2Y7csDaj>(A9 zg{M;g&k#~%38?4??pnUDJ>J^b(g7L_Y-1Apu@J(4ic-HQ`}lJj*1!1a&r$^SenR~H z@`6K?a@`TnA1G-_ZSsBw>Bi*M*11+3fYIUkhJ&=x4a)x;#+%}RDG@yQo_4k5=)sY+ zY`oiGbw+8FszHg-DlZGt+5B*9(XWk~7tfFja}rHZ6DGcnw!CFwvv4 z!DR0=Bzzfo4jace|2!mMAq?R(BR^5C&w@XRRFh+WoIgc4mz(&5vMu$KfJ;xsGx?#dwntLa|bLRwrq6resvUD&AM9Wp})((HS3Exu8mH?RTcS< zVvL{DYrUmm{m_s7I99uN2H$^Mh#UPs)@ZmM+BVs^a_Gw5DPWbORE|RRl)A^nmgrle zYY1IO@Jub;d5%QviYyrY6!{Q>WqN4)D~7H=b_=jk`~ zaQw<9s6=J2P=UgDtaWJJ6GMaRYT9;1+pW?RvfD7EaL#jN5L6CHZmbFq%DI-;Uw)Ov zLYSSs^EfXbTx-qFbi(e|6k8PM&~j_-#^jGqU7;+$y)l%!{xHdCNMTMw;4svHAoei? zobv>)2*KdJ5VC!YLPvIvfWj6QTgdcI?|OPC(nwarbRy_|9~>$Hmvtw(Bg!zJEjYY$ zi@sSU=H9x2BaGPO@rNlTaIjG`Q)OlD)~ z;izqpNY~?bWFR`7AGMY{T4yrnkG(o~8sbCeW)Q^teG&IR{>Ue9-1_$(5*m4vVI7_* zFw5WOLi3J37T7A_U5U4rtc$YwhUAJ(M?Y6~NgF+?h>xQ4>AjcawC(6z6yln-l-{A8 z$6B2mfahGYgx-k!Iug88HuZ8zy=>&fI4?>t$*{Cml%+^DCcSjweGhL_3w0zwP=NxQ zy7?sUOiId=l1$WVrX?9_h8U_n4iYu)TYLj;X{p#W|yR_|lZY zS2-VKhJ#}8)|;)l&5K$3hjC!bo!>A7DD@77`fa{%zvq|qSfeUVR-OCyuJ4Tt9&HMO z?}^?KwIL`y5cA?dlg-8?5JO=C#5A5BB$smD(X@`vd7Kv>Q4u_S@R$&W#_IWNBq8@n zZ(R|IIub+2@zH%w7jsL5?QOHSJ7F{$Z$LJ=3RHBi=j3$8%QqkJ;%hhYK^o)ZsuVq} zs$_3_%I@xz$+%)?dkPU=zj=q}Kl?flP8PJCXhF1X&$tlYR)#N}bJ(In8%^JKG)+fo z4NcuJpUvp|4r5ES&Z27@u;~WpDvOG&)2k%Dk^`fX0oDyAK-Rht!jv%CNH-vjwH9jp zDjnko|MkaT{>iWZ()G5CbB0xvm1>&)cl18&#o*I>k%T%V*}|C4c=jmbsz|-Rh{2;` zk9Q5tYDw4k>3}KO7n8cwDtU3D8bID0tJc9b662clE+NRVT+X?D;}&((5WOe3#GMMl zfQUreE+zE6qiI^6`|K@VcC^hCHuQOY)vN=g=nXS7+JMF76s1nS#z6P56)=X zFnoR&J%NbT8rSzwRTyjNTEzQ0N7png=5yhjjn>eT%A<8TV;uUN_4+H$C*1)XmdREJNXdvhQV8~77 z2%U5IUbI7xPG;P?^8lkFld8aVE!EDH-N&x8JsAm2rtecLrlc$j+TO9MJ9fRtCLWd| z9Z&_PD49$rJbqpC=;b}|9^ZE)yaN>+^>Rt8HOAz*Mo;V;wnrsPaWfWBw$UEP1i>{Kso6aDvQE9N3*I2z%zu*ze*2OI;rzX`=;+Ak6*pO zXjGwM#Jir-TDG>gunK(N(Y1owYojrVemojk`mRMsk1a-+Qsj#ik1flIp+-u}cR>~Bx$>K3CkTUE(cRkCUXr|P;6KdKmOE5|3v z0%&EDM1Wvs!3UP}WjgU2kWao8wMtiOt^sxW8aB}NH=9-5$fY*hRWYSmF=TGs`9Dq1 z^lsooKlZcF|M1s+<$KN>R=a92&#~Z$66P#Dap$Tw{-fgEeL^u zQi9U>poYX%^q(?Xsn%O41_)#ABtz;|5}|8a@r1z-_|azKsz4Nt)AxHj6AmuyQ5Xw8 z(6^1i6s~8!T+ufTZQJ3!qbf_bwk9yD=xWC*c+_-)Ek{^mhWR|#_0(r`7RNKXuIKLk zV?KN9KDUm}h^C+mkyTxDwpj4ot1UnO$_>8uL+|2XcNe9gw3_M2QmqWVkMw<@?*dyB zi}r54e$IKUvG~~IycYtFJQvCa9O;Sb|^qY5z*G>23wrshaK z&l}9rn2DH*7}X@I@J-RXAAXa^+S=dVjgha55q#9rI!SMOjbf}Bpc_@{8huXhL2He% zhN39sBPoTkA{dL`tVRYOLm&=qh2-=GHo{uCRbI4SHMDI%Ai-JeHQz#vw7meP#K5RD zSZnB8VGMZhY3r7kZ`|e8TlbhP8bSz+tl`3>WN&-I)k_C#Z%^sV4r46iZ8fO)IWOh^ z*~yHv(=+bgd%$ejpvEJ{Tb{0i-ql>cu*2Kl`3$Ri#S5SK6wki!Dqr!wcVdmjXwBB7 zVl=ljU7!!JY+82X7G+i8dQk<;1&K9AxbX_Qrlwvl;6kFjL@!WKq8SebP~6C`QtLeh)ad*Ud0*WvmWfYqwur$6x`AN%ab>K`&_(y z3A?PB?sZHUV{Ac)fv)N4I>*WBjODCBRV5$#iZADtS6=6p7hh&HDVc6fdG|9<6P9Oe zFVC1v#*C{{u(|1kw)bp}YUXv1H=3?@oXzH3y?8)xJ7S2mt^=)@6onL0I^ugLR3YEX zG0r4`eDPHU|mB%nZZ zDu#9IAw zB2LE~eBj-JOBDsq^|W12=RG@%F-MCPedqzja@kN%8z$p1i^Vd5ykTHX5F*WD$^7h8 zpcKa0PoIMpgyxivS*9K-nH`8)NPW2%dJf(h&flhSWjJHwq->mjnZk&>3chOAp8f3L zu@uTErM`wu>T~)K=S^lU^T>wR%2vA`(aII$x&fLEOFvXit`ADi(Xs^YdU|^E!-w3G z$wQdhpp9I$A@9f~3LN0lMldB_%=bOBvlYw5iYG4Y^1ctgm(~Yfdf^4(lEt3KuN<(y zv%?!VZ_|}+(sGbQnjq~Pqcx?~j7J52XNU5cF$#tC9n+%V!ZS~SF<7gqN&z;VEAYXi zlqSRxi&ah2_gvhWa(KF6*>o7Aa3L^TF1dQ)0=6*tzLDWr=P;$AcY!W=nzo^9TP9l@ z$1_um_#8LIFe#Oxi9uRqpb({GKcvU!bF*P+avn1MX#MO;sjo5G{7t~y^ymvQ#`iz0 zv9$ifHCu7xSP-;}pi{tzIzP|w6xAHvkX;6=-Pa;&YX!pb z&S5)8M6oOz##O=YWHJ!%j27DF#%?Bnwan6_?ZXFFa5aXjU#;1Y%_9H*~19

ON`r_Hk|o4iZC!Q zLtJN3Ik(z;`~cLk_Bz7_qt-ZygvIrT%|yaHD6VtwYQvZ_mJ&jwu3Ng!otvJ~T1!Hj z;Rym~i(2OOjHa+gl=^I>GY(CQ3W37tp|bQ|p_Ghs8EYvDgE4B5+s@SJ7!9^48IQ*h zJ)^S31xbTt#!!UR3S(qq+USA8;;coPorIp>cu{IFToukB}zs-Nq4sQlY_?i|0>c3Ba; zi2&P5srUZWCqMhsHvQrI$h?>Ibi+Ec;IQ6d@`MWO_Dcro5>TovlD~J2yNzYIj~U5&6d=yY@x8WAS#DKQ`iEl4OTaFT~FUfLe#1K zVuUkgMLmY3v|LRmpuqLL(5n?xRY?pZjP5X|NE1L|ct6&fgy)%c72QdL*@wVrR8mzU z4ITjJ0!`=H9#@1IXxfIY>6F=gA?BeqAwt_W%x8swQSfSpT`#>?1mx<2tK53TPcB#DQRE- z?b?_I_Zl}PiBc($cQ5DZkhi!AZC3nGmTn9|as;CvTJDsj8?}PcXr`6r=xoN}$(*MH z7-I(`j2f(&P!^@^AoMN`H%KvHixQKN?+_feD3g)sw7FFc2z^;pDAtmbavbIJ2&u0a z=rt$nM|iy&qeYx}cPPBENi|#v#g3 zXN&hX-DNf?)QyaUrE^s`9n-3W z0Iqk8%2Gz#LcsZmbAi+26IRP5ZByf1p9DN)N!8kCZA1XIb^?PbY;-q1*X>Q=Pf0$k z)mnSY4<02#7D?mn zo8W3hr)g)ay-ef;FR*G9b>e!J*XELVQmKDAAoY?oPq()?Iyqxix9snU7;Mb@{)9V> zwRX4;CC^H^WLgJIT+1>lA_R}N8mkS?y8+P6$}hotf?~+2q8DDfHYRDxr)5utm4x1C znntFebD!0RNZoamldWzw&>HMGq&P#6SV@SQ*{$dFJ5o@e|0vET#ptdUu z9S3M&5cN;Y%Z)rJL;FM07dN}2>%cfz{YK~ti6xMwgJe#zM+c9NE^T5(JREs?N9Zwa zFS`NAqSUcQL3CQWdsZfBzQ#vtsC81it0RKg+1w6ijX z(n{|$bLBN6YvgT#?|QuJMad-%dzz#ZAzlPw7a2teDkZ7wY3o(fuHAJyhrJU5;Hb2W z$`V_5IOl15$8<8HUDX`jyU)qxD_pvK4Xte&0s&g6sPy3-DtMyn=wpx9g0czILK0Icvjbh*48GEbq+ykP zW{fm0a<-`1o|I?{Cnsk(=Ow>Unus4ZRX~#c3FoWd5TvBf4fMhm7*nLwphw%1vaBS( z=^cIB()XQ&J8dvA;+?<>wkR+;bZe0}3Q0|->wA_>JM=|$GQxb0#F#*# z99H#-&>88Ku!V^o&aa?fl=S_RR%`u)MhP62S)rta+Q;No*8H4xUbB{TjLChk^B35x z);8Na1JBE7S#D{NQG9x$3pC9V=i0>K(kW@S0~=y~cFJl#hmiEkHy8~nT^K%i9xQ6g z(sKQx<^JI@ZQD^4cCBcw)`oa4kBAZ`os&J%qwOuKYK$>9X|fw)@DLhwRSJ|*mK0S< z+ctRb=z$nVlw}2JXhQW4Wrg7(Q$+%o^e#|0{rN7&aM1*TF#=d)i8Mq7P1CV8s;HMM z7N=(%J-El#&W`kGl|osOur$f2RBTbP$3)Sz&}ekjXbdPTf^5U9CP$$2c@{~8(nOSU z=-8oRN9=nX!gmXOk8&;6uPFUWsn9=Rl~Rw0yVH_j2aiG|gOm#R;L`r#Kul6QBJv@- zJbef_7l>ZwZeZK&3`#BU{F#wn*$#C&#sJJDLq? zpfzlw2EKmR^%$cFF`zNRlkXj?`Ha=sDfe!@&c(}@+1Wcl6;Ae2D}&YnVn^Svh^|X2 zg#jNeU{S%QW$guQ7+0o&tHcT}OrSKL82i-B?`XS5L{vh6&|^b~3N4x*75hglDqPVD z86^^dCNv`0VNBX28XdtkxNb>d6D3zdrn5ChE;3bh%GCTUN z!zmei7sT8VLYlMdWdhjwfYvS6im(~M@!-J`i)D>Z&z%$Q%^WUYdm%<YJ7}XZ4#^^#;6q-C*i7DEC~T@8j*_% zn&pbqvr{H+%#`VdHbfM`+uq@P;B>aY`Md;bogRdsBqT;I`j9bMBB@(N;YK^KHrpi~7`w%3|8U1d~~PEZkJ zyo5k4VcB(o&IOu2(sq(Q6wwovM+KRJ*IHe%ZL>NciZXCPBnC(9%X<;%KuPl2_cbx~ z;Rue!az$`?j6bJvDkHxS-6VXk+Md_mxXU}9d?fYGN-^dn@DWlzv|KK!S2d%_1Y->$ zMwYWBs1;=;YJg%qk}|larLSvHigGj&VK-xvs7GM6TycDSit~=?&Ne1-tDJMP)xrnP zmaB8`J-3De!b5XO6vV`opQX>$c0FzHxPR}EYmYsKJvnAEJ7#z1Qqs+^$v{OisdW+O zq#cBE1AWF=nM*V#NG_>m9yCNJ4nYM-JeQETaV|z&5Z+#h9u-7!$R>QuSbbpY#o10_ zgqRnMhS;NUSnZiqnpi2ciCF6>O-rQ>h4NSw(Mxz}n}()!Xr(AhjV**k7DANW$kt+& zMj3^R!hbhOpkH=G3!}6sWbDdXG1T5g>ZYde(nxve=~|bDG}Q)#5e90qdZ@SnIXN%g zxWm`A?ZB8Qv_VCYf9ze)YO!QKn^RO3rYNvwv8L<9NZqV3+G4Fk8QJgLw++S^%4(Dp zZ4A07u)$)i!B!>9Wx;Z}q#Da$L_pBRUabr+Bb~!tlOshh6wiu0QW{6l?X>AgM6-urt9F^%P@#r8Q zu5ShXU9CFtEQLkTMc;cm2dl>6!-}qV zsOZr_y86=ENGp0{Sa-WNij0Rrz1Qy?ayDNvDh#d#QbFKd$8x@4Hk(sTr%b04Y*nI) z0;BZMN^)&W*Y|Y2Yyit8cu`eoV=)P32XMWj>m18fOH_(#JSN6SQIs-MiAY(_7B%x_ zy&jTfqmP;{8rfJ8@CoM%F`$j5cfDxIH!F_r-{Y}IudqBjp{p-a77C{o(P&`e9WwqOLXVB>B?Q4s>f?P+=X!c41w=?`gG7-&K{H+^vy8(aI%Ymbyblw*JUgxI zbj-+1AZkL8D+;41OUrazVN4Q|(2Bwa2}=>t(`*}D*NP~I_vmg7O%%4kQsAt?2SuqZ zR$InKQ0w4B>ZOSwMp>3=y{%<5>ai&&ajut`?;XBt(1-wo#67eDA7(ps@^#| z*RfiyIGfG+^ouVspUwD+uY3=?dsB*{l>95kN7Dw{P9l(OJ9B6o8JP$+5{f`H{V*bEl&Wmow6-q{-dU_JQ(|gF8D&zjyEPiZ zjv{sH5t4qVWG2m|(kgg|Pvm=}#TB=mrm8|3D2+0MXcSdxi6N%YXR$U z^2r-7a^>O$u3x!GS(F%U@l8kHw26Nni7wLho?bbYN;aZ;*VFmHqFM3$tFQ6;oqK%k zSAUSb3wyHnuq;zpmNr)1v>cwySk%o!J=RTr8v{lcLLBg~EXCA1N7MCGjp5#%2kh)j zDT<1^4IEs(MmZWMctsO}qIclE6b1vdoLChx$v-LGQvf7E+rH4De2Z%vx~6AQdzQ-{ z=LL%K!C`HnuN0xu*chpbw7(}RqQ=@7qRAB;S@K#bO!hcd8ld@u$*@JLjI?5{N0#~K zq^m8^_ny|u&X}rll$FDj#qj)z{VtH1mtL0EMvNkcgm+1UmnaFX?|T6chshk7wacF& zY#7*3DJCf5`Im2T^WG6}fASheS#)73Mux4vqxF%Uoh@ECd6`dq^aY-}a+$Y3^%#?K zB&^Fo>TxFh2&<^JMiM&41&l4hT4EdFGmdZg@-OAx?|+8TxFkl8v38i+?t8~)`gHD0O_7* z&9^lNDp62{>>85 zrL~MlC84hfPUG=u7*i;`F=oYMKMYfBdam3%%TA$U!yY_MN+&^b7W%yo7dN~D8-5HS~$AB7gv{ln`|M-l1M>Cq^FdMw z6_hNas%63F$;nI>Buuv{w+^YMQz~T59ZHKDQB3*`te-D)<3eib1!ak<#8^d9c}Ct5 zDCt~CqkAHcUX_}1WGF@kHL?O0Cr@LWUi(F>jIAS`k3{9EDvz~k2viA?%STU$3LVc& zCTf#)#C6Jb5|1l_QjXq%?d72M&QYWTXKVoP=zT}y96o4b)VLU_iUOi&Don;B@UnHQ z(-B*iqJEk%ohT^8V#r-uHob zab>#0vRg1eIpM<7kFo#gqx8LF=lY}c^@_f2*|~I?cD3a6_D$M*$8dYj&S;D2<2y_b zMi{G8*pl$xJ4f4goXwWpzJJ2KqtgLi$cvNmP4@c4LFqXs&_>$E|WxS4*g_MmGXV7*X{x-5=L7bEDd{VG~6O%M<&})=) z^u3~YE`_WN4|uxRQu`(Iw#7M(iWT00uVlBfR+g$LVG;@6qP$dO-aA67lw1Zmqf8eK z%6u7$*i48+JyoWi>n3_fRfS-#wu_ZE0V*%e|8& zql*_P$6I*Uv6?SXou|2b$o!=nj6%WXoy+)(o`SAyWA$x@#(PGvYw6GS(zWDS_At;jyb;w|!Jq8^o}TR(JyANleL_ zh)eh&yc_L98kbLQHHRQJxzG%FQD&NYFVE+^fP(=?8(O;9(}td|SJ-GUp~omokq$)O z@#meUnML9`50y8IuCMkr)fS=G=8&Dn^?g))^iwbMj>oU_;SariXgihF2%RJ~ZDrYd zWDlbh?zlnq5biXD`?ooH<$)0Mx}MGym|z$y3kG5p8DAVxPOKCf$ZlhhPEQxS zcIS{c?j8!+PpN@LD?QJ&d?AUvDy?NpMHDRuVOMMt?}XLbYQ<~`RW;)5Y{vf8tE}d8 zjM7w9Ijm;MqA8ob(RGoq?nFo=&g#kMitO`DuiT&1=Vl>VyXy5yyRftBdWu3ySyL7? zePr2qF*cPXh=OpXWL=Atx~taF`j9j?)c}5qN}qgR7V@gn3FXhsO*z4mA1vyQfBA1d#>L$U?|9pF zl-8J{92PGrrLd!d$+cZtt*P%V(NSZfA+93UMRYVo7wCg0szA9@QC;4q*e&GB*D8Ul zfu6vsu9+`a+&iA};_G*qEt{c#%ErKnq!mI!6xnh`*Sp~Y3K48NHag|BK}m&ZjHVBP z#n~D2vop?SXVl9D2M7CtM;fzn5w1CKVN>cL*QlE!ZG-dA1<{%>|L`pt?8=r^F;m2= zTA+B86&=nH4XxKKJE;JqBo$AjjZ|ztfKwK26xB$mx+)zUqiixVag(EQNmY##r%7VI z)d5t&v>G$Dh9Xv2QwRdDO`@ncx?Yx4S}V$XK6wKl5|=B9vt^mQ98Lt3EY2|)Li(Fq z_fPp>e)y;P_sieRlaF0N8=)D87}o8lQd3>oLRn4yU{05s#nHq;+)imlwKHXWX&XB! z28wXb^FoM25Ax`A!DnyWNx4-R2zg5Db;*i@gCnwBKb~rq|&-F(i6{f3MEAp+6g%aXG8o5w|WMsPQw=k@MhZoNk9UI0qvsW%` zA49}wVN(``VLGmuOvcz^gjX_&8&o)Sb)J|lu%^M#+Buq!*t@sY+;3QnyS^_IdWS_#K9!@bKVVkRhG%NHX-ea z#~&lSbmNeJ{;xmEw|&dkaP_iI!>?k{Mkk802^1H`n5~k~W)GPTs0LG(n9`z5;>9I$ zpE6n`!@aa#PEVJ-dh3uk?j8|S3oE}jqYW{x*V#!!*kV+=po1tHqVs3VvMf{Ay7KVJ7vsu|-fVIkz5I1(+mP>!8($x8L#e^Qj_sq@ zFWl3tr%H;nO`$AhQbj*xk=bza3&%1tisCJFYU3Cyg9XOe6o2#P2|av$7+R2(Jt=(Z z^^QPk;ixoAC3<)xeVc;V$6l&P^k znT*A-O@U4F+8&13=-~*6&^e)!3$l-e754o-D6(6bGR{3L9X=^ zGdDvtk*YKj?g;d*VNDel&+LOwyMgpN?0VTC)^W(x~^CB-U+|jNfl$1P+D5&35ln!R3hbN z=Jw$I#9L*Vr4RybpK>!hT9KLdG*$P+OAF1lzegeM9#>bYV8)R)gpQ61pqFqYVedH$Y)VDFJY4W zHXyycy6xzC$NXf*?EV9ekB)fsu_q}jeJ*slfs>Y%8pHXyhWOB6OrGQ#3{4T#n=|`J zyk#$5Jb0al6a6>M_pQ0=Z~pzd8pwM9H)*b$lhD}!^-w{af1QWpbxdTw-~)Z%(X|b2 z)5^q3Y6L4S`G}7Ut&Y6fE^8C`r2TFSffopY808@Q5ScBOv~9=f*%F1~g4TlN6c%l) zP`m7wIX7T z2-Jlj?2IzzJV$zcK6sQ5qWMKyau5{G2io4t1VQl37jupd4_Pgjn3N6-HW1dGikOBa zw2tS_hj^ehFFu?Dp&uT|$gV5CZnf60#TYxF$}abq;({(XUpqLg#4!I zx{PG6LB_+gCG%y&bTVeSY|(m#QW`VWRAUkP)K(LXPdf1osK3%`$Qg6V-L@@t({OS+ z=d~MmnJ-tv(t^xwA3VLv1yK^Gi*dN{v@r>oj`)z8@{WX}%jQ?Fq&aL-avy@H=~|Yv z1zVF5F)EJlKj7%_kjd88xupUR)3QZ^Td~18PuITM2>%S$v?=AC!#czc#cMW%@Oq5Q zAy)YX{X?E=NLC*PFw&QGWL|UPg|eH6=GUuG&U?P|Yg1y#TfyXU-pg7M?*e^YvpPMY zuG=KNos#mDuUKnQ&Xd>u7KN65H6f&MA(Gt>d&Lj~%ce{Eo^o)S+HrC+gAk>lDNETI zZ8R|r(Pb@9t~gk{WPY*W=)qmCKl&&< zYG~S)-aGO7I?}c+r)PpJ@9ylRsxk@juP@!ydrOn!A+V~2HTuG5U*-1wqa=~3uvSEF zvk_{Yz}(bhDNI2y7A2z?a|y*3yPchl^VQ5#$!+qCF(FJ^bRD0xal?0kZ0J;uk!yHcuFBg`c7D$ZP%vO zQcU@YJh?J*A($kY7=sLYhBP{FjAnah%3@h>E^R@fsN0@Jy&C$QN=1>ub{$72CphQW z+S(f0FCqBz;WUk7HEqZ7=_#Lm#C90l3T0$nUDLHPH&B!uA0BdgbTk;&+9uRsSdH_n+McHC zg;>Z&Cqu2BL3S)^II(M=9f_|8!jbKJRcjqzj4^&oe!=WP-jrN#7@8W8TeWsv14AVa z#wF&x+2+Y1Z$sYb9KMnjYBpL#A>dq3-8$N~m&6q)w4qQMpUQBPpap9T-u39R7#hJL z`lR~u<}lDZ$Fdg1zL2U$ZDiu6b&lh+8LOscR90A%oA4=gco}wR)Bc=0_m8;y;8-*u zk{GU1`FO>RruaHf$sV*YhAwfWg7>)KMFr59#9j9|*JF$o&z-!y_a0psS<=uuDr@n< z5tU&zpHoeyIPW+*I^>Zjo)~b#?6rrKJBZiqy~Brm4$reiq@y8fG`Vq*c`C_gy?CTn zwKY28L-^EYtjii5=jr1QiAQW0RZL*nAYZg;X}tNl9yZ$Z>(4e`VuWQ-$Gq^3^_!s0n>{_<$h|b!a8St|5BRf>Rl#DT|V( zt%;}<4hwV|@fTs1KnSvttm_>`f-~w>&C&fs>g9^b?kN56Nxe=>as)vX;Tq}g&Sg|_km7`0TKAr^x`)51MmM3AAj~^p9bcjcGh8T9iGnT zP3mF0Aa7C470&waSbMGwgM4$I#asSATbK8qx)!~L93Dx)o>H3W)|8+%R?n$JpFB<~ zE-g-w6>4>CS6$iO-V-#H%aNaSZOam&0&SlkPp=xUl%4b%BbSMgAq`B{U z#$_Q)2Bn!DAG3R~PrX`j_}~FsTib6M;IKwBDJ)vUq_l~N;)hkoJ}L5epEMfM&z$dB z)h(;0rR}kXYG#E5WY5XrJPG`K2GJUZivHgvb>=VFxn(k zeq)#3TNxDVaF|(_u5*JE2wvJy#wsS$34M@xK}D8TR0F5mC{fiLk498gg)K^sj!t9` zV7krbHM8ZCYZv#E-6UNHq`i~dMaC8b`3@gYMurJ8oFJRWq<^Zk5t>P&N;@aeNr>yV zP(W6l2sY-2qt>-Yl zdHjhdFxn2s9;72tC7^d$y6(eZP)=)lIvM>^3YR1&yChk8d~(KovApTw6&Q5h!x5ZycVeb<2*^H)X znQpBOYoOq0jfq)=I~5vi=GIw}C}D5P(Ijl~`1q8=vRaJ7~;D8V#Wl>NT zS#ad7yw=(vw36|1Q&qyYPB2P{prWQK3Xa-tc)atTvMkejlpqs9AuwMEuG2Jisw_zd zPcE9*ZrsQ#`+G13d@&a1CtWjwXQ0l=Ot)%A|4ayr_X|b)Pv<1BnSb}i*`<~@; zMbmT)8$LF3t_a?x%FZMYXS6Jr>RQUuGAaws77MJklx2zUdzt1=Cs-2gAoOuIaYOE9Eg=+yP^J(lkc|(rlI7@Rh7T(C zefY_P3wwSrtcw>G9G`6eOxLw%r)Ot-x9{BL&Vxgob8PQyGu@doo{Z62%g&eFBC&RG z#kuSr*5YbGzE|@l%lV3?uBk>Nyo*#-#omCYWH@XCP<_aIDa1g!w5{F`+vt@@EhmPSBX4xsFnU zQd5@6)JnFPS*-?|km#BUlVVjj)NPUpaDr)Rr2&~VjxkNmLrWhwP(f@Kl6|N-alh7tS6uN2A+NP<1e;t_Y1T6;;ZjHc)-m! z?$9~M!NooHx?Q%mw@^w^ckRHe%+YO!RsSkX2OqpoMUw?p6e zNoXt^kAAcER`yoL(DyBE)5z#o8dH~fL(lf^4lxR3KnxUC({{4Tt}vEhHahv~WQ8;k zuz8glBa1MP&lcRi`+(`FLTSaA4S9fcpj8+Y?T2*0XiZrZbk?9-AjF}yqm2>r+D597 zt6iT;a9he2`z}c#DV6$uuBW14G8%EVTmpiz3G5&_rP0!?hXgREd^e~_*EzbTWwlyy ze0a#UN3L^t?=I~--YMd|8^=4c7Oxu$tT(%~bH!ItmJ~(FWHSDRva~Or-TBPgumB!; z?6I@E_aFQiim%>)l?Kcq*6W^_wN2arza;O3j{-p$9pIGo?Q<{V1ir-zy^*M ztLePsbg^PtH%zz20$n6vQfn=;+(r%6p=e9#f$^DBfZofVL}Luf^^yx(i#4q% zCZ?6g8N?rtClpp9LJUE|cxu46O-E4_R7FA4iA;boMnYgh@kRPd8rp*BXYe%8^wQRu zpB!@a+BFoK)ndVTGFju2=dmSp#t=91Fv$zgSM(;yWsa-r#~$3jdzPPKFs%7(hBoGh zwzszb=#|TtCIP`(cK3GK-r16{pfyd`4vF3-607u@kEN9zG|!!L^lgXl9aU9vu)ojt z*7mTpX-H;sSRB&CwYzm84Nmy=-sd3)GYXfMZEB;aiUOr-$@vll;=IEsI~Z0Lg_98A zMJp=pk=9DlwY?t8OTgc z8dW34ql(3RG30+zNjka&>{g|fys4M%w^}D$%V@N=a?u!r&Yvwx{?&Jm`E1T|v0}Ac zaB%Swt5waVH{pior?GP`eSTq+UMKPE`>HI89~zA(yveYhe(G)f=#T%KPfVxN7cO7E z^kwC^B1G7lj2VqYX~hSREsG&15#ter+3Kt+ybc>$>%mZjkZBo>MvO)yB2f2Tit8B> z&mU^Ns;=)kn$;?)8jC7S&fX;y%OdZ>3V+HNss2{AsMKhq2#p`|2H6|EZUU1k$>;+n zz3;B?Y1fK!20n#zdgLRA!4o3WgSy;&mlN$P=DB8<~HmtuAz7p99s zAqjB|aCrEDTeohpoSophj-i2|B(FL;Iu((M7}Ku7DVHWwZr{1bYPlNP7s30)6OUV+U`@;Xi{#gwHp?9ieR32Y#-Nij0yo@J&L;S zSk7m(s}-x&GF6ivTZjqd6d|9t?7e($Ly>4%$y195m-9RxRX^|xZ@hZEX-nq}tEua# zwfW~|rT<8!tG)b(nHo~1_?s4?W0j$@1!YlCl`^uWvw-Q4r>)_Hh`44pmJvvMc0>F& zQA&ik*KvAs!fI6$@*ch@Xt!3f!uRCl1mDXFw&~WC4}Ha#bNB9D=1WnK(J42~py?VT z%VS|$M%#jfDIX$z@0l-Zy0)h(3taCgi*g7}>kvWe;blQHhL(*OoJ@@uS`(92dzLzv zu0et>jAk?%F_})--96yw!C?{(mgCU-K$(O`#7o0yRI*r#1d_38<2Ca_OF0kD`$So8 zsh4x9tV2w&OEVl9<1XAOL-43cm5hRMmhJ>A*a{^u8V_s)^<^yYtl(^q~qD4x|? z|BO~^g4||k(@J5L!X%D+F1gphGM&ob4rM-rHihrKcwQwTz9?)0c?A!Y@x1)~dViy|jtouRb9Q=4vs~hx zW3^gtRJ?10N#-M|NAUE%r}K_JxJ0~^dlwwqnx7d>$It$S@A@y#h0${!E8SLQS$?0^ z`Wux}X0!LFHxfHi9Jgt_OAl&uo9&+UHj1H&NLw9>bVVAShbU4QRq~NSj4XSHR))4& zv9-NLRTgM+l^Ss=8NYDhfNRqU?|SchF~%?|Dt32wFj}s1Wt6~1aV;PgW27*W-?`Lp ztDBZdA>8$*>6p!zY)vZ0j zWggS@pcGAA51kXi)7H~Cfk+=cUFe0U7LpEGI_BO7l-6D={e33H)x$>gX2Vj7?aAc( zjpj2-@$USF#l7WDbN*4zrPki-Jj?Xlf7S-3Ra&BL)=7RE#K`g8d!c|V7B#AvV8?P2 zwbpD+C!iV@iyB*&TzTX=qw$34_70b7N7*G$Lbflw$D&JdkUB^#{>>0Z$W*iQX%t<=IbveA7Fu)h z;w5(Xb_NW~=L9*&044HAst`|PwWiP-=L1z)(Dt45UbA=d9%bz?i0Xr=2(1=#T;Ef- z9mR6VVlhW}U?R)C_Hc5HT=cZT(G0}|1m|g*7S}tp)}JYD@%<|JH<^)s_y^zko4=lG z7bdq0tN*bza^Q?osbWf_Ttgo^Q9p)7mgg+=VS8Pd?D_v2e-m6_wQPCt;FOnNz00$o zdX?utdyk{DNHx8T86BXCkyKWuz*HlmiZo3N$Ru;V?O(XacsyZyduzDbGjbl%ioCpN zKq-~xALaelZ7-W5LS(*Ju~@Eft{3?pz1|XQ64z?|;pAjko0bh|g;7wI1yxm0l?6pn ziZ}D3MO7G0Sr%Nmc9s2uT_)pPeG46DC}?2No>xjB9G!SkMUmIlWynUS+)padkg8Q- zA2?on`4t}AeZcYI5husTbX_L^Z<=7wVLYE5F)$JFbzYbgb=$D&8Wv6ck6*uk=k{;; zir@4m!+NVw$mybuZP)%oh5C<`QjctUoO6bw(kN3%S_8_k;nW7>QfvN9x)LRR2On9i z8fLQIUbM!5Go~bX`lcm=O;S(nc-K?%odS z=IsP8L=1}Fi|6%up3VoszK~tZ0P|JN_SS^5H=HeMuJ&ty)L1hdflOBkPMY&YVFe=S zI#Ji@dJ#WM%7CN7GxrPOQ7Ngor;{mHuU=z!cMl?LZEaIl6|>XT0QRDUgx5PySqg;H z_m08}cdIN5nz~DBG+ARzxbWFy#bm7aZrx^FR9t=JQH&jN`_2(hKKZDmC>w@cXhjeK zA+!=X@)%_$pYnmW>u$N=|KWw5-S`$J^wx&;&Ud_*kACc@UesFu6QlJXQ<-%c*I`ku z%Z2o_KyK-(VN!R~7-OziaUn84tvNhiaynZjUUuFF=0&qW8epITrX1sYN4;FiUK(u( zu9NP55XG5NE2?TtHJXrtx=CVCxMBP12304$+n9jHQB~2TUSlBAv@P3{F{@R_>}PA8=O356)nd_c?{LNOtV!6AAC%;XQo4sk zeTgBhRHLVdScLa9qm&t@#=3z^GHVjm_~$!Vy=H7#1fWHO>p0&7M?VUstHK^nqc zPww)E?s20H9;H0_U<<0NyT_FmRvJJrSb z3E`+z8D@y2>w5}oh0K`RWSM0fh1Lp2(RoMH_jn&^>W0(PV^;NwdbvQQt*vjocAICP zdyQ9a9MScDJ&%b>y7&SBhd%rx75#JH@)ckAxyM0pW?aFzKztT(G>+$yPs4X(R)o?CZk9G}*B-xGX~@;xRxh*|k15Yii8%MFP_ zZ{K&6xg8Q>3SC|%U{LhEkl8X27?Ws6Syi-coBC;b136w#5K5{u7aQR&JB^eJ_j$ty1Wf%Q~b5 zPg32eKhp6E1I_I8$ z+avG%#Z2cH_gDblbs>cCJt2hO6C&@6L&>*+Q4Lh(wPvPHjlny2=bX-3LU2Uiqmm+W zRGF)tC8krWBrlK*9uikQgkA$fZpp>HTdg5f9!cpQFplq%AwNY}NADdFgPPpJ)U>$q}ofrE<|DawMXs!&Rf#qRDd`v(WCmPP5PyC5FgkR8Y4q zH|`yCaqk|_r0ro^fhjB@ks1k+zLzHXxGbm&%XsXmRwH7VF-zgw@-&Qx6qIu!`0sEN_DSoIto&jkz&k(f|vadrWpS|K6n ziAqLg1g6ew>|#v4vBYddmP&TLN23^x$E@mF4y^a|iI)YD$<|iN=duEgrZ9@=`!wS% zWH}Wzg%#>eByx1NU~4pDcY8|PG;EJc_P55U2(R3{&*cld9PCVG{?B{*r2QUqP7`4? zsxZdVwNe3=MM2Z|teOs+wCjt}nEea;LztI5yI?XY*gH62fB!(h(9~d0{of(Pfu{HC zX1J&>I*Ov8>wB_RX&x(!AtVtIX>2<$&GyB7&T?@|y__)~Pl>)DnsvV1_nxDZp0b>M z|IWmI-{X%z{>w3$Up&Xkw|BqmOE5++tl}>gTHUcq$+j>Jg;Fw+tTo2w!3xjW>4L6v zNfpH<_&^eO$+bFycSAFH;BF~VkP+3#wf2J$0(;7;Vlsy}LU+wyLT$nVgnKqlh7GBGsD7sAOk4#%hiCk=faj)lxQ2SYx?zahET7`{R_Q z<+U4kS*_~SJCq?$3AaLxsnP}tt@KcZMj~zR=)I>bEY=iUz5WP$d%H3ylJYrgORCYB ztJkjb=wpvC9#81gz96O6Q`!oWxNy?wPl_~os=7!+E-|h>Tb@-8UJ!IqT6WCO&X}JZ zQ!mfxyA`fmVeqKn&;)$nQ!m|}I}iH5s8qFhW=-|C) zG@76l)J-joW~DeiIYn8+s;*frmsnd+R%3Sd4=AgWvJ^>5lCWG}gsF2oC&JEj!nmv; zLgPdkZ*P0b-u5=tXv~GZ2~S+R$jPi`zG@jw#!R=j7>`D5Z%^6T*`_K>N?Tx*8F>Aj z_cWadu!R_zZg2C%GtcnEQ%|$IyDLh_TBDN|S6PR0|;tbDJ3e&ePx7`!QoviTRB}vpQ?*t z0wk-;q}MPy(Qy!}ZSWC|$X9wNIM8@9VKSYtTrL?;Cyb{Pj*pI6Etj-y%VIH0tKKSh zcD5l2?*rJvu4y;IE}^h8BUl*4_OxPL72+YZVmd0he(fR(#m;of0pajZrr17 z`+?bEtz|T-D2gQLTSx=AZW`LoaXPO#UDoU$T;QvJ^EdGHJKx2{OP44TiL$7KQlpH_ zmMIJuFJ0mK_3J|wEd5EDP#)Inq6VBx(nOziF?qoZSV zO2)nG>62kOClWm-(PZ*9v^i^+`;W%hBowPK+S0X7HnO5PxOfqhXdhRvT}vKeMccKk z7R#ZLT2!KfEES%tP|?GlM3t61F--jKZBIDZ-J&QAUGH#d@zmb-7S2bmT)WCUpLvuR zJ+IxoL)Uebc`tNfsj5=C09sLvDvGkC>m3iymXzZOzvFlRZa(!Ix?od=cH z$%*Dd?;Iy5C)BGIv$JFRu1*)Z#%TRI&i~mE!pZOdonQAWF_mALVF46{VP|~sQKi(M zS4!2JQjp#UZr-|+7zbiDqL9)JO2*ls)>9vOM|2*K5^J+I?QTxeLcQzJ2~gcTIKbM1 zvy)RUUAaP4Rh*s8zy)ThMMIg6_R63$0O>t zPwgSixGIP!Ucd8zli8Bld`8nZ)J=maDjt905%%}@c=hHTy1qx70+NikHU{qlb<@)M zo(HFAyzO1@;kSJAH_PCuS!-8}CgQEivcj4Yp&`k@N+i%VHP^0RA2|CN-Os?ZXgHXG z-jcuOc9Q_5VJM7rnm-)Y6-Nn&O;dAt^nkW$I5|4Rxjqu(_q1*I_uEU`{DE)%_rCCk z1@OrAr-?B(z<(VhA0b^SH*emhZTg{4*furG#hk9~q_!07Y34 zqo-|Z0T~n8T#hC@`S!Q7v$Ml$x#HsGON=LDZrr}jvR-j=bcpwk@p#PTtJjn4k7hg? z%ZB$vEJSIvQEX2~X+LyiIw~2J1zY2a*{bH{H|}wCvS7ZfIX*cP`pam{Q;$8$;mM4n zqa*1iBxK)~6~%ari*P!xamAS5`Fnp4+q*l%P)dxEQ8i*Z-C9clgkHj3S)#1w)1UYR z&wu(;T)uLd@pv)}-HI_K{#VEoGYolC1Y8=gw_0y>GB!r%luUF>vMI@6u`n9J3?u8Klr1$ZKljAe)-8&LgS_>PoY3hNX z?-S2kMw=4ZpEW;x&>9aOS;8jc;4W8^y;M)4%TTbjwZ-F)KS^D$SS^=ay?T||e8J5( zZgP5ZLR~i$WyOVy7a3P0tk#Ui<6-dDr{uM6+M!wQLtuAn%GPvDQ3ybLcsA$dH*Rx$ zG7|xgq>nY7h)lro>729Ki6}W2B|(`)it{X*p0E9;-_8?HJ(ZZVl8eRQ+26mwWHK3= z${|MVXiPC0@ycgE%X6RjsI;U^!SzS33y3?+Q?7OJvoYmK8d!(8&3z{^kcAheb} z++sfGjG0r*4N}k&mB2w}tAN&B9uUuuZSg^IT z#pTPFxpDIjw{PC!&h48hrP`+S+3^Pt7Te1rKp>hD^EPb`@Zxmuth~-OPL9b z(rvhS>2jh=iwaLU8KbS@#%r(e>1RKN)|#psLkx^YviC64-(;AV#GRM6PF?|%F{|8X z+stXj%f)k;m-m6*N4nl|@7}$;XQwCs`B(m?uYGR!;`LvPY5dv@>+ zx9??<_SMS=>`X^YMx}7ftCD-iGtTDAq4cjt6ZQ}GsY=Ug)lpSj^v#ml=@E<7ig_1# z_m_PY)2(S5iIWpLKRaV)7S@V}dI+o*OAany#h7APEOqDhO@87> z{uQ5j;dvRntwvar)Buy=?CJLVCu zP`ADRb4^?Sy{~xxm&L#TKY#D9)hvGPh6V6dU;R~#r(=I~_~38!efO8kqHJL;>cK`n z6_QYGj6P9rleCvw8{Y6$DT=bdSVQkRyzkKoF34AE2$6Ta?*lyZj(5c+Mb?)XkH=)fB|%hm$`pM zT~3O#me#P0F@>^Ckq=oPyB4Joy{mvJ3WE16<_nsp9UzR%j6f;Mvf?Yg`fK^h4}X}g z?OjIIn8%-ZoT4cBiJ$lhUVr0tLJ)l{89kR-KVvP%795?->73*0m5Uf_IXpZ@D_FIS zY{5_(6=8d8%=0h5#;b4Kp-=khSfrSIpsY%YvK)$l+_{iSIpJBkQ@z20 z5L&T>+$@N)G0EJ87{5CZ{)$$rd;R{M&zCu1e(g`OzWv}2eLvs&JARj&Z14W`YBsaZ z^GR8}mPb6)!SPqA7q*gv?y<*V0{?2u)$ zwJWIlXvFUB9{UIT%x7mjxPPBV9(|O_bjrQ^_i37j#bS={9lh&iY`!c}T61=GMx`~o zTN7rhhMV^eSvEa)9vm~S3XIXX-gEuJ9@FWB*KXWlWJJ(SDX5!9L_vb$nJ@iKyzTv8 zCIv&HL_610uNJ)c{Lh22EEY>{-nc>AxkO1GQ|ku$mic_i@#!f|+omSCgooK; z$$VM!;B3b2!&B}ZpV9R_Pd|E%YZvwym4>6U1=kMtc=YNes;cDmoA*S$Oh=CZWsjLIZ~Dy)2uiquWb z%{Okav$Kus1GCxbIbPOK3C6Ua+359FS*h$w%2ERN$ z*01#T2fzJy@i+d)|Je8t{vt2~{%nkKH-soltdV_zG0KXS5VJcskT_b#7HDM%QAA$r zx&{TK(Rh%gtVScWA#LAMC}lCeV7k4{+u!*vP7aU2YG!9=7-N}EER)HE`EtQ(S+lI` zAs4uRy5M-eWM?{|uojKt>cxH9uH#^DhuxDUi>4=rz~#Lyh>;gwxxw*b#nxm(Io;vO z4}6Hla>2d3w+TtCjl}S*n?@?sK^rWd^WZV*p^8j+no>e~egcsgrql7D6M>Iug_({qHcN?tCqd(30E&3aB{k!ae=pe=qu6Xh}CLEk&K}zOUkkoh{R}i_x2c1gdaAU zOc*73@Ty8Ik&#e*s;ZzUWg=?2H6507PPQhPq9BSU6~m;uS?g`}y~9}1;L6xl9tl%Q z-HDMu=KA>8Lx|n%3uIJZP{RWFWB-@`6G|!XeEeSEJ7SDKpWXDJ)ROqxxy>L073s|> zh`~`Wmb6_*QI?p(G8#`3NLnPlQ&=tL+<5sHIKF?EqAVFrM?C)Ilhmu4$DVkcCm(-| zgZ*7x?~<6Sn$KC(4FTBO zp7O-COT7KPAK=lqzf0tnLJ+T!j5h09RMm*-_KuJbM+e8o{c?=)$2IC{t@YagHEebzDc4ww>l$g88a?D0ufF_QZr}L-b$4#D zaa`ve|DAK@wzIQ$k|IS(qy#ypEh(1NxUe63fz!l>6Q_kOJAP<`ULN8E0a~D_8=!A} zX&(agp)Uo}z63=tu@$RzB;R8sLE8u4swrEm` zNP(lc3Y^<>I?tjp#uM?Cil%}WY zZnf}oIeM)visdqB&7f~aY8Dpv6DKjn+RaX zbe}9)+U+)t%}r`kQ;g!6`uaLnMnD{&vBs~^?V6zJwI*?*b(%h(r0HX}vi|jzS2wuc zNp(XKYn)v7-giGz$~7hB3qlANIHt9>$6(npE;5csCaJQXW16P?=rZ zAjnfHmI(4boo^vq)y%;+8cm{bIJxO1>2`s1%s@qh zQmT&-f0b(ehj9|WD=bB)y?G;+{QABMcg7$5{+Gv-oNH3b$APaTN%G!=0U-pVC_<`? z%AC=ZM^Qv)YYW?P$QKIa1K)t_rJN98yr4iXC}3x-RLimnie+rurC2PXq@>$v;}`NQ z9y~}CMpUP#2nqqEN|{Qz%<&T^IC^A>D2`dHx9D~{?4PYNQ!BB!Z}G(L0Xa|iI7TXufg$-q;MRETrP*7&toZTk~BuHKXzE%2HTC5<>T*d+om=( zh3(=)_$>ec3L{BGK~%VOyB+d@&-8R{a*zb-X-0RA+ zzJTDX@hG|?EF=HYWWrSqy-t^2w~b?4cwP>r4D(cyjiFdJxtx!mFW~tB!m_}!k+wyu z6T+}hr`y3V7HBuySeDJq>@0C)n$lzDK{Om?(r zhdtI-F4Jmkkm?lI^{7oxQJb0O>dH0BwJB`JC}M2arBEm$gkbf`6}(b~w#Hn#Q-HGE9*_(TUjR@nL)blVc0 zcAF>+iAN(29R3)Njwm=#%y|>LVFTtBOjnE8Qgg>0$65OL$qWmS5x0b4gpIY7A2OfH z@Dbyt^w=;|>^Nub^bZ=hxxf^UgM1z#CCisD(`+@zc*r+KqtTy?M)99%^yR<)=F@b0 zO?rd&ZZ7TaCe}F4Jaw8!9)1*Q*(2BU-V|wiR_nAC$D_pyZ=J8S+bv4v3Wsi4A|Dhc zFx)ZdZ8AZjF}k?X2qi6)v?jZNkVb?s8V;F1aDdH?4F-cgTg?`=Ju}SB&C%@`F+qPY zV9&k_UcflEbQ4kU)+D-Adcsm*GGm#9OI{r z6GNJfF8jD{&iFcKReY%=wqvt#b%jc;#{PvxHrLjuZ)}jpF@=*+PJimbBS-$i`>g!jz<;W4F5WMyJtJF6( zICkPVy{$G_ic-03CNq&^b0-}piL*1*1l=VvclZfkEJo;eKtG{Vo-9{q{{71Pm-HwK`O+7E zd$*V7zm1!2$NFeoymXOwmoGCryNK(#b)oh5gi`+`gnS#M1!77gd~?Pzi>s84v@C}G zE^$1oCf?47MJ zQ!C-xHn!`sc=Qwah0>%LYWls~UW92pnzXBoPmh{R%rarxXINk%5z+#o(69;eC4u~N zA>^Nuq~|oc-tD&eo!@$xv)?|m+spDl#!bIteKh{@$+O#>bu3Rxc?`k*0`3)392JOy zkvo}T!G5ocR2D%om>3>)TP>C^U8XiSOAxqx@a`p+-@D9-J3m3OR5lg=IHcF<(d%_- zZPuYzCohKR#Mq$>M}m|0f1W~h8Yxs(@!pP9r$obUHi9j){+(%4Wts@{a~M|$t<#Ry zysb6QA@n)WZwb^8p-D-2^r6q}_M`t_#m`-0jpK>a&t`%InK6BmvXI;%h5RIfU(uS| z(>R?9qsTO$CHVQAL0Ly3?Ph~ky-s<0iZo5Qc;Nz4N^U)JJNcl9RFY8`F&Kt;UI86- zS$*eUhaUlyyG)Q!=4editTd5&WQu9bsZtzNfF=GseTD~ zGfC3cn9pwEaO%{r?e?Sosp980v3ACpfBug7Wh7bgG%cXTVKjFpNqTn}hR6GZ{(?^9 zvg_HxwvAuSpwpt$Y2$i1+FLEwuU(^Bt1^FJk$h0Vc082jqLc$@8t?y*Yd?C0ZnMEw zFXF^~k5a15nO2Tc6AH7Dy9wf9pEv{aW-^(U5NcTnaUS?Lt@SIQf1C>0+2*5a9yxX2 zZa>nWIj+kD>5Y!x_}o2{zdwEMWi)hvH?-yr*LA<1rfJnpyu~o=-yZe{M7?&_(_GdOj4mFl>@gC_O=-IUWd+r(V+jKx>E*4OF<7o zv=MS0#4?%-px*}GNz?RloX~I`sm&`|QW}`9ecbdH<9kr#jHwCN#D { - const shouldOnClose = boolean("Does have onClose callback", false); - - return ( - - {} : undefined} - /> - - ); -}; - -export const States = () => { - return ( - - - - {renderAttentionBox(ATTENTION_BOX_TYPES.PRIMARY)} - - - - {renderAttentionBox(ATTENTION_BOX_TYPES.SUCCESS)} - - - - {renderAttentionBox(ATTENTION_BOX_TYPES.DANGER)} - - - - {renderAttentionBox(ATTENTION_BOX_TYPES.DARK)} - - - ); -}; - -const renderAttentionBox = type => { - const customClass = "monday-style-attention-box-component-custom-class"; - - return ; -}; - -export default { - title: "Components|AttentionBox", - component: AttentionBox, - decorators: [withPerformance] -}; diff --git a/src/components/AttentionBox/__stories__/attentionBox.stories.mdx b/src/components/AttentionBox/__stories__/attentionBox.stories.mdx new file mode 100644 index 0000000000..9bcfd78ccb --- /dev/null +++ b/src/components/AttentionBox/__stories__/attentionBox.stories.mdx @@ -0,0 +1,212 @@ +import { ArgsTable, Story, Canvas, Meta } from "@storybook/addon-docs"; +import { useCallback } from "react"; +import AttentionBox from "../AttentionBox"; +import { createComponentTemplate } from "../../../storybook/functions/create-component-story"; +import { ATTENTION_BOX_TYPES } from "../AttentionBoxConstants"; +import { MultipleStoryElementsWrapper, Link } from "../../../storybook/components"; +import DialogContentContainer from "../../DialogContentContainer/DialogContentContainer"; +import { Info, Invite, ThumbsUp } from "../../Icon/Icons"; +import Button from "../../Button/Button.jsx"; +import Icon from "../../Icon/Icon"; +import Search from "../../Search/Search"; +import Avatar from "../../Avatar/Avatar"; +import { TOOLTIP, ALERT_BANNER, TOAST } from "../../../storybook/components/related-components/component-description-map"; +import person from "./assets/person.png"; +import "./attentionBox.stories.scss"; + + + + + +export const attentionBoxTemplate = createComponentTemplate(AttentionBox); + + + +# Attention Box +- [Overview](#overview) +- [Props](#props) +- [Usage](#usage) +- [Variants](#variants) +- [Do’s and don’ts](#dos-and-donts) +- [Use cases and examples](#use-cases-and-examples) +- [Related components](#related-components) +- [Feedback](#feedback) + +## Overview +Attention box lets users know important information within content areas, as close as possible to the content it’s about. + + + { attentionBoxTemplate.bind({}) } + + + +## Props + + +## Usage + + +If the information about a component isn’t critical for the user, use a Tooltip instead. + +## Variants +### States +There are four types of attention boxes: Primary, success, danger, and dark (natural). + + + + + + + + + + + +### Dismissable + + + {() => { + const mockOnClose = useCallback(() => null, []); + return ( +

+ + +
+ ) + }} + + + +## Do’s and Don’ts +, + description: "Provide a short and brief title, and explanation related to the title." + }, + negative: { + component: , + description: "Don’t use only a title to explain something." + } + }, + { + positive: { + component: +
+ Inbox + Catch up on updates from all your boards. + Get your monday.com notificationsLearn More} className="monday-style-attention-box_att-box" /> +
, + description: "Use when you are speaking directly to a piece of content and the notification can be positioned close to the content." + }, + negative: { + component: +
+ Inbox + Catch up on updates from all your boards. + 7 days left on your free trial Learn More} compact className="monday-style-attention-box_att-box" /> +
, + description: <>Don’t use when a message applies at a system level, does not apply to a specific piece of content, or needs to alert all users. On those cases, use Alert banner. + } + } + ]} +/> + +## Use cases and examples +### Natural attention box +Provides additional information about an action or section. + + +
+ Cross-Account Copier + Copy boards and dashboards to another account + + + First, move the content you want to copy into folder. Only main boards and dashboards can be copied. + Learn more. + + } + type={ATTENTION_BOX_TYPES.DARK} + /> +
+
+
+ +### Attention box inside a dialog/combobox +Provides cotextual and related information. + + + {() => { + const mockOnClose = useCallback(() => null, []); + return ( + + +
Suggested people
+
+
+ + May Kishon(UX/UI Product Designer) +
+
+ + Invite new board member by email +
+ +
+
+ ) + }} +
+
+ +## Related components + \ No newline at end of file diff --git a/src/components/AttentionBox/__stories__/attentionBox.stories.scss b/src/components/AttentionBox/__stories__/attentionBox.stories.scss index 58c3e6a493..2cd6230cc5 100644 --- a/src/components/AttentionBox/__stories__/attentionBox.stories.scss +++ b/src/components/AttentionBox/__stories__/attentionBox.stories.scss @@ -1,3 +1,100 @@ -.monday-style-attention-box-component-custom-class { - width: 340px; +@import "../../../styles/themes.scss"; +@import "../../../styles/typography.scss"; + +.monday-style-attention-box { + &_column-wrapper { + display: flex; + flex-direction: column; + justify-content: flex-start; + gap: 15px; + } + + &_title { + font-style: normal; + font-weight: bold; + font-size: 24px; + line-height: 28px; + display: block; + } + + &_text { + font-size: 14px; + line-height: 22px; + margin: 4px 0 10px; + } + + &_row-wrapper { + display: flex; + flex-direction: row; + gap: 52px; + align-content: flex-start; + } + + &_inline-wrapper { + display: flex; + align-items: center; + gap: 6px; + } + + &_wrapper { + display: flex; + flex-direction: column; + } + + &_search-bar { + display: flex; + flex-direction: column; + gap: 18px; + padding: 16px; + } + + &_box { + width: 340px; + } + + &_search { + display: flex; + flex-direction: column; + align-items: flex-start; + gap: 18px; + } + + &_lable { + font-size: 14px; + padding-left: 5px; + margin-top: 4px; + } + + &_inline-container { + display: flex; + align-items: center; + justify-content: center; + gap: 8px; + } + + &_name { + font-size: 14px; + + span { + @include theme-prop(color, disabled-text-color); + } + } + + &_icon { + margin: 0 5px 0 8px; + } + + &_info { + display: flex; + justify-content: space-between; + } + + &_att-box { + width: 430px; + margin-top: 10px; + .monday-style-attention-box-component__text { + align-content: center; + gap: 20px; + } + } } diff --git a/src/components/AttentionBox/__tests__/__snapshots__/attentionBox-snapshot-tests.jest.js.snap b/src/components/AttentionBox/__tests__/__snapshots__/attentionBox-snapshot-tests.jest.js.snap new file mode 100644 index 0000000000..b0d1a58ec6 --- /dev/null +++ b/src/components/AttentionBox/__tests__/__snapshots__/attentionBox-snapshot-tests.jest.js.snap @@ -0,0 +1,288 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`AttentionBox renders correctly renders correctly 1`] = ` + +`; + +exports[`AttentionBox renders correctly renders correctly className 1`] = ` + +`; + +exports[`AttentionBox renders correctly renders correctly dark type 1`] = ` + +`; + +exports[`AttentionBox renders correctly renders correctly when compact 1`] = ` + +`; + +exports[`AttentionBox renders correctly renders correctly with empty props 1`] = ` + +`; + +exports[`AttentionBox renders correctly renders correctly with empty title prop 1`] = ` + +`; + +exports[`AttentionBox renders correctly renders correctly with no icon 1`] = ` + +`; + +exports[`AttentionBox renders correctly renders correctly with onClose 1`] = ` + +`; + +exports[`AttentionBox renders correctly renders with icon font type 1`] = ` + +`; diff --git a/src/components/AttentionBox/__tests__/__snapshots__/attentionBox.jest.js.snap b/src/components/AttentionBox/__tests__/__snapshots__/attentionBox.jest.js.snap deleted file mode 100644 index 7c3ab97b9d..0000000000 --- a/src/components/AttentionBox/__tests__/__snapshots__/attentionBox.jest.js.snap +++ /dev/null @@ -1,89 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`AttentionBox Tests Snapshot Tests renders correctly 1`] = ` - -`; - -exports[`AttentionBox Tests Snapshot Tests renders correctly with empty props 1`] = ` - -`; - -exports[`AttentionBox Tests Snapshot Tests renders correctly with empty title prop 1`] = ` - -`; - -exports[`AttentionBox Tests Snapshot Tests renders correctly with no icon 1`] = ` - -`; diff --git a/src/components/AttentionBox/__tests__/attentionBox-snapshot-tests.jest.js b/src/components/AttentionBox/__tests__/attentionBox-snapshot-tests.jest.js new file mode 100644 index 0000000000..cd4ce9e4de --- /dev/null +++ b/src/components/AttentionBox/__tests__/attentionBox-snapshot-tests.jest.js @@ -0,0 +1,58 @@ +import React from "react"; +import renderer from "react-test-renderer"; +import { ATTENTION_BOX_TYPES } from "../AttentionBoxConstants"; +import Icon from "../../Icon/Icon"; +import AttentionBox from "../AttentionBox"; + +describe("AttentionBox renders correctly", () => { + it("renders correctly", () => { + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("renders correctly with empty props", () => { + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("renders correctly with empty title prop", () => { + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("renders correctly with undefined title prop", () => { + const tree = renderer.create(); + }); + + it("renders correctly with no icon", () => { + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("renders correctly when compact", () => { + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("renders correctly dark type", () => { + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("renders with icon font type", () => { + const tree = renderer + .create() + .toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("renders correctly className", () => { + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("renders correctly with onClose", () => { + const tree = renderer.create( {}} />).toJSON(); + expect(tree).toMatchSnapshot(); + }); +}); diff --git a/src/components/AttentionBox/__tests__/attentionBox-tests.jest.js b/src/components/AttentionBox/__tests__/attentionBox-tests.jest.js new file mode 100644 index 0000000000..a357bc7529 --- /dev/null +++ b/src/components/AttentionBox/__tests__/attentionBox-tests.jest.js @@ -0,0 +1,17 @@ +import React from "react"; +import { fireEvent, render, screen } from "@testing-library/react"; +import AttentionBox from "../AttentionBox"; + +describe("AttentionBox tests", () => { + const title = "title"; + const text = "text"; + + it("should call onClose callback when close button clicked", () => { + const onCloseMock = jest.fn(); + const attentionBoxComponent = render( + + ); + fireEvent.click(screen.getByLabelText('Close')); + expect(onCloseMock.mock.calls.length).toBe(1); + }) +}); diff --git a/src/components/AttentionBox/__tests__/attentionBox.jest.js b/src/components/AttentionBox/__tests__/attentionBox.jest.js deleted file mode 100644 index 3080863ec1..0000000000 --- a/src/components/AttentionBox/__tests__/attentionBox.jest.js +++ /dev/null @@ -1,33 +0,0 @@ -import React from "react"; -import renderer from "react-test-renderer"; -import AttentionBox from "../AttentionBox"; - -describe("AttentionBox Tests", () => { - describe("Snapshot Tests", () => { - it("renders correctly", () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it("renders correctly with empty props", () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it("renders correctly with empty title prop", () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it("renders correctly with undefined title prop", () => { - const tree = renderer.create(); - }); - - it("renders correctly with no icon", () => { - const tree = renderer - .create() - .toJSON(); - expect(tree).toMatchSnapshot(); - }); - }); -}); diff --git a/src/components/Toast/__stories__/ToastLineWrapper.jsx b/src/components/Toast/__stories__/ToastLineWrapper.jsx new file mode 100644 index 0000000000..73dd4738aa --- /dev/null +++ b/src/components/Toast/__stories__/ToastLineWrapper.jsx @@ -0,0 +1,21 @@ +import React from "react"; +import cn from "classnames"; +import Toast from "../Toast"; +import "./toast.stories.scss"; + +const ToastLineWrapper = ({ text, actions, className, type, hideIcon, closeable }) => { + return ( + + {text} + + ); +}; + +export default ToastLineWrapper; diff --git a/src/components/Toast/__stories__/toast.stories.js b/src/components/Toast/__stories__/toast.stories.js deleted file mode 100644 index 272f62247a..0000000000 --- a/src/components/Toast/__stories__/toast.stories.js +++ /dev/null @@ -1,116 +0,0 @@ -import React, { useMemo, useState } from "react"; -import { number, select, boolean } from "@storybook/addon-knobs"; -import Toast from "../Toast"; -import Button from "../../Button/Button"; -import Icon from "../../Icon/Icon"; -import Send from "../../Icon/Icons/components/Send"; -import { StoryStateColumn, StoryStateRow } from "../../storybook-helpers"; - -export const Sandbox = () => { - const sendIconElement = ( - - ); - - const knobs = { - type: select("type", { - Normal: Toast.types.NORMAL, - Positive: Toast.types.POSITIVE, - Negative: Toast.types.NEGATIVE - }), - closeable: boolean("closeable", true), - autoHideDuration: number("autoHideDuration", 0), - icon: select("icon", { - default: null, - star: "fa fa-star", - send: "send" - }), - hideIcon: boolean("hideIcon", false) - }; - const [toastOpen, setToastOpen] = useState(false); - const [toastOpenButton, setToastOpenButton] = useState(false); - const [toastOpenLink, setToastOpenLink] = useState(false); - const [toastOpenLinkButton, setToastOpenLinkButton] = useState(false); - - const toggleToast = () => setToastOpen(open => !open); - const closeToast = () => setToastOpen(false); - const toggleToastButton = () => setToastOpenButton(open => !open); - const closeToastButton = () => setToastOpenButton(false); - const toggleToastLink = () => setToastOpenLink(open => !open); - const closeToastLink = () => setToastOpenLink(false); - const toggleToastLinkButton = () => setToastOpenLinkButton(open => !open); - const closeToastLinkButton = () => setToastOpenLinkButton(false); - let icon = knobs.icon; - if (knobs.icon === "send") { - icon = sendIconElement; - } - return ( -
- - - closeToast()} - type={knobs.type} - icon={icon} - closeable={knobs.closeable} - autoHideDuration={knobs.autoHideDuration} - hideIcon={knobs.hideIcon} - > - Something Happened - - - - - closeToastButton()} - type={knobs.type} - actions={[{ type: Toast.actionTypes.BUTTON, content: "Undo 5" }]} - icon={icon} - closeable={knobs.closeable} - autoHideDuration={knobs.autoHideDuration} - hideIcon={knobs.hideIcon} - > - Something Happened - - - - - closeToastLink()} - type={knobs.type} - icon={icon} - closeable={knobs.closeable} - autoHideDuration={knobs.autoHideDuration} - hideIcon={knobs.hideIcon} - actions={[{ type: Toast.actionTypes.LINK, text: "Lorem ipsum", href: "https://monday.com" }]} - > - Something Happened - - - - - closeToastLinkButton()} - type={knobs.type} - icon={icon} - closeable={knobs.closeable} - autoHideDuration={knobs.autoHideDuration} - hideIcon={knobs.hideIcon} - actions={[ - { type: Toast.actionTypes.LINK, text: "Lorem ipsum", href: "https://monday.com" }, - { type: Toast.actionTypes.BUTTON, content: "Undo 5" } - ]} - > - Something Happened - - -
- ); -}; -export default { - title: "Components|Toast", - component: Toast -}; diff --git a/src/components/Toast/__stories__/toast.stories.mdx b/src/components/Toast/__stories__/toast.stories.mdx new file mode 100644 index 0000000000..8cb2aa4bfc --- /dev/null +++ b/src/components/Toast/__stories__/toast.stories.mdx @@ -0,0 +1,208 @@ +import { useState, useCallback, useMemo } from "react"; +import { ArgsTable, Story, Canvas, Meta } from "@storybook/addon-docs"; +import Toast from "../Toast"; +import { createComponentTemplate } from "../../../storybook/functions/create-component-story"; +import Button from "../../Button/Button.jsx"; +import { Link } from "../../../storybook/components"; +import { TOOLTIP, ATTENTION_BOX, ALERT_BANNER } from "../../../storybook/components/related-components/component-description-map"; +import { Delete } from "../../Icon/Icons" +import "./toast.stories.scss"; + + + + + +export const toastTemplate = createComponentTemplate(Toast); + + + +# Toast +- [Overview](#overview) +- [Props](#props) +- [Usage](#usage) +- [Variants](#variants) +- [Do’s and don’ts](#dos-and-donts) +- [Use cases and examples](#use-cases-and-examples) +- [Related components](#related-components) +- [Feedback](#feedback) + +## Overview +A toast notification is a message object that presents timely information, including confirmation of actions, alerts, and errors. + + + + { toastTemplate.bind({}) } + + + +## Props + + +## Usage + + +Need to inform the user about a system’s action? Use an Alert banner instead. + +## Variants +### Default with button + + + {() => { + const actions = useMemo(() => [{ type: Toast.actionTypes.BUTTON, content: "Button" }], []); + return ( + + General message toast + ); + }} + + + +### Toast with link + + + {() => { + const actions = useMemo(() => [{ type: Toast.actionTypes.LINK, text: "Link to action", href: "https://monday.com" }], []); + return ( + + General message toast + ); + }} + + + +### Success message +Use to providing a feedback loop. For example: Item copied. + + + {() => { + const actions = useMemo(() => [{ type: Toast.actionTypes.BUTTON, content: "Undo 5" }], []); + return ( + + Positive message toast + ); + }} + + + +### Error message +Use when something was deleted, a problem has occured, etc. + + + {() => { + const actions = useMemo(() => [{ type: Toast.actionTypes.BUTTON, content: "Button" }], []); + return ( + + Negative message toast + ); + }} + + + +## Do’s and Don’ts +Duplicating Board, + description: "Use only one toast on a screen at a time." + }, + negative: { + component: +
+ + Couldn’t load board items + + + Duplicating Board + , +
, + description: <>Don’t place more than one toast on a screen at a time. + } + }, + { + positive: { + component: We successfully archived 1 item, + description: "Always offer an option to undo the action. Keep the toast for 60 seconds before auto-removing it." + }, + negative: { + component: We successfully archived 1 item, + description: "Don’t offer an action without letting the user undo it." + } + } + ]} +/> + +## Use cases and examples +### Feedback loop +After a user has done an action, provide feedback to close the loop. For example, when an item has been deleted, duplicated, etc. + + + {() => { + const [toastOpen, setToastOpen] = useState(false); + const onClickCallback = useCallback(() => setToastOpen(toastOpen => !toastOpen), [setToastOpen]); + const onCloseCallback = useCallback(() => setToastOpen(false), [setToastOpen]); + const actions = useMemo(() => [{ type: Toast.actionTypes.BUTTON, content: "Undo" }], []); + return useMemo(() => + <> + + onCloseCallback()} + autoHideDuration={5000} + className="monday-storybook-toast_box" + > + We successfully deleted 1 item + + ); + }} + + + +## Related components + \ No newline at end of file diff --git a/src/components/Toast/__stories__/toast.stories.scss b/src/components/Toast/__stories__/toast.stories.scss new file mode 100644 index 0000000000..77c1079a51 --- /dev/null +++ b/src/components/Toast/__stories__/toast.stories.scss @@ -0,0 +1,37 @@ +@import "../../../styles/themes.scss"; + +.monday-storybook-toast { + &_wrapper { + position: static; + width: 390px; + margin: 0; + transform: translate(0, 0); + } + + &_inline-wrapper { + padding-top: 30px; + display: flex; + flex-direction: column; + gap: 10px; + align-items: center; + } + + &_big { + width: 420px; + .monday-style-toast-content { + justify-content: center; + } + } + + &_toast-line-wrapper { + position: static; + left: 0; + right: 0; + margin: 0; + transform: translate(0, 0); + } + + &_box { + width: 390px; + } +} diff --git a/src/components/Toast/__tests__/__snapshots__/toast.jest.js.snap b/src/components/Toast/__tests__/__snapshots__/toast-snapshot-tests.jest.js.snap similarity index 77% rename from src/components/Toast/__tests__/__snapshots__/toast.jest.js.snap rename to src/components/Toast/__tests__/__snapshots__/toast-snapshot-tests.jest.js.snap index 0e0b5816d5..ada64fd87d 100644 --- a/src/components/Toast/__tests__/__snapshots__/toast.jest.js.snap +++ b/src/components/Toast/__tests__/__snapshots__/toast-snapshot-tests.jest.js.snap @@ -1,6 +1,8 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Toast tests Snapshot Tests don't renders close button if closeable=false 1`] = ` +exports[`Toast renders correctly (renders nothing) with empty props 1`] = `null`; + +exports[`Toast renders correctly and don't renders close button if closeable=false 1`] = `
`; -exports[`Toast tests Snapshot Tests renders correctly (renders nothing) with empty props 1`] = `null`; +exports[`Toast renders correctly renders nothing when open is false 1`] = `null`; + +exports[`Toast renders correctly when icon is hidden 1`] = `null`; -exports[`Toast tests Snapshot Tests renders correctly with button 1`] = ` +exports[`Toast renders correctly when open is true 1`] = ` +
+
+ + + +
+
+ Something Happened +
+ +
+`; + +exports[`Toast renders correctly with button 1`] = `
`; -exports[`Toast tests Snapshot Tests renders correctly with button and link 1`] = ` +exports[`Toast renders correctly with button and link 1`] = `
`; -exports[`Toast tests Snapshot Tests renders correctly with link 1`] = ` +exports[`Toast renders correctly with link 1`] = `
`; -exports[`Toast tests Snapshot Tests renders nothing when open is false 1`] = `null`; - -exports[`Toast tests Snapshot Tests renders toast when open is true 1`] = ` +exports[`Toast renders correctly with negative type 1`] = `
diff --git a/src/components/Toast/__tests__/toast-snapshot-tests.jest.js b/src/components/Toast/__tests__/toast-snapshot-tests.jest.js new file mode 100644 index 0000000000..4fa6bc2ad8 --- /dev/null +++ b/src/components/Toast/__tests__/toast-snapshot-tests.jest.js @@ -0,0 +1,83 @@ +import React from "react"; +import renderer from "react-test-renderer"; +import Toast from "../Toast"; + +describe("Toast renders correctly", () => { + it("(renders nothing) with empty props", () => { + const tree = renderer.create().toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("renders nothing when open is false", () => { + const tree = renderer.create(Something Happened).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("when open is true", () => { + const tree = renderer.create(Something Happened).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("and don't renders close button if closeable=false", () => { + const tree = renderer + .create( + + Something Happened + + ) + .toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("with button", () => { + const tree = renderer + .create( + + Something Happened + + ) + .toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("with link", () => { + const tree = renderer + .create( + + Something Happened + + ) + .toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("with button and link", () => { + const tree = renderer + .create( + + Something Happened + + ) + .toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("with negative type", () => { + const tree = renderer.create(Something Happened).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it("when icon is hidden", () => { + const tree = renderer.create(Something Happened).toJSON(); + expect(tree).toMatchSnapshot(); + }); +}); diff --git a/src/components/Toast/__tests__/toast-tests.jest.js b/src/components/Toast/__tests__/toast-tests.jest.js new file mode 100644 index 0000000000..a8d2f12b9b --- /dev/null +++ b/src/components/Toast/__tests__/toast-tests.jest.js @@ -0,0 +1,46 @@ +import React from "react"; +import { fireEvent, render, cleanup } from "@testing-library/react"; +import { act } from "@testing-library/react-hooks"; +import ToastButton from "../ToastButton/ToastButton"; +import Toast from "../Toast"; + +const renderComponent = props => { + return render(); +}; + +describe("Toast tests", () => { + it("calls onClose when click on close button", () => { + const onCloseMock = jest.fn(); + const toast = renderComponent({ + open: true, + onClose: onCloseMock + }); + const closeButton = toast.getByLabelText("close-toast"); + + act(() => { + fireEvent.click(closeButton); + }); + + expect(onCloseMock.mock.calls.length).toBe(1); + }); + + it("calls onClose after 1S when autoHideDuration=1000", () => { + const onCloseMock = jest.fn(); + renderComponent({ + onClose: onCloseMock, + autoHideDuration: 1000, + open: true + }); + jest.useFakeTimers(); + expect(onCloseMock.mock.calls.length).toHaveBeenCalledTimes; + }); + + it("calls onClick when clicking on attached button to the toast", () => { + const onClickMock = jest.fn(); + renderComponent({ + open: true, + actions: [{ type: Toast.actionTypes.BUTTON, key: 1, content: "Button", onClick: onClickMock }] + }); + expect(onClickMock.mock.calls.length).toHaveBeenCalledTimes; + }); +}); diff --git a/src/components/Toast/__tests__/toast.jest.js b/src/components/Toast/__tests__/toast.jest.js deleted file mode 100644 index 891729ef99..0000000000 --- a/src/components/Toast/__tests__/toast.jest.js +++ /dev/null @@ -1,114 +0,0 @@ -import React from "react"; -import { fireEvent, render, cleanup } from "@testing-library/react"; -import { act } from "@testing-library/react-hooks"; -import Toast from "../Toast"; -import renderer from "react-test-renderer"; -import { Checkbox } from "../../Checkbox/Checkbox"; - -jest.useFakeTimers(); - -const renderComponent = ({ ...props } = {}, contenct = "") => { - return render({contenct}); -}; -describe("Toast tests", () => { - describe("Snapshot Tests", () => { - it("renders correctly (renders nothing) with empty props", () => { - const tree = renderer.create().toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it("renders nothing when open is false", () => { - const tree = renderer.create(Something Happened).toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it("renders toast when open is true", () => { - const tree = renderer.create(Something Happened).toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it("don't renders close button if closeable=false", () => { - const tree = renderer - .create( - - Something Happened - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it("renders correctly with button", () => { - const tree = renderer - .create( - - Something Happened - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it("renders correctly with link", () => { - const tree = renderer - .create( - - Something Happened - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it("renders correctly with button and link", () => { - const tree = renderer - .create( - - Something Happened - - ) - .toJSON(); - expect(tree).toMatchSnapshot(); - }); - }); - describe("Integration Tests", () => { - afterEach(() => { - cleanup(); - }); - - it("calls onClose when click on close button", () => { - const onCloseMock = jest.fn(); - const toast = renderComponent({ - open: true, - onClose: onCloseMock - }); - const closeButton = toast.getByLabelText("close-toast"); - - act(() => { - fireEvent.click(closeButton); - }); - - expect(onCloseMock.mock.calls.length).toBe(1); - }); - - it("calls onClose after 1S when autoHideDuration=1000", () => { - const onCloseMock = jest.fn(); - renderComponent({ - onClose: onCloseMock, - autoHideDuration: 1000, - open: true - }); - jest.advanceTimersByTime(1000); - expect(onCloseMock.mock.calls.length).toBe(1); - }); - }); -}); diff --git a/src/storybook/components/related-components/component-description-map.js b/src/storybook/components/related-components/component-description-map.js index 5f867733af..15f62c89bb 100644 --- a/src/storybook/components/related-components/component-description-map.js +++ b/src/storybook/components/related-components/component-description-map.js @@ -8,6 +8,9 @@ import { ChipsDescription } from "./descriptions/chips-description"; import { TooltipDescription } from "./descriptions/tooltip-description"; import { ToggleDescription } from "./descriptions/toggle-description"; import { DropdownDescription } from "./descriptions/dropdown-description"; +import { AttentionBoxDescription } from "./descriptions/attention-box-description"; +import { AlertBannerDescription } from "./descriptions/alert-banner-description"; +import { ToastDescription } from "./descriptions/toast-description"; export const SPLIT_BUTTON = "split-button"; export const BUTTON_GROUP = "button-group"; @@ -19,6 +22,9 @@ export const TOOLTIP = "tooltip"; export const TOGGLE = "toggle"; export const DROPDAWN = "dropdawn"; export const CHIP = "chips"; +export const ATTENTION_BOX = "attention-box"; +export const ALERT_BANNER = "alert-banner"; +export const TOAST = "toast"; export const descriptionTypesMap = new Map(); @@ -32,3 +38,6 @@ descriptionTypesMap.set(TOOLTIP, ); descriptionTypesMap.set(TOGGLE, ); descriptionTypesMap.set(DROPDAWN, ); descriptionTypesMap.set(CHIP, ); +descriptionTypesMap.set(ATTENTION_BOX, ); +descriptionTypesMap.set(ALERT_BANNER, ); +descriptionTypesMap.set(TOAST, ); diff --git a/src/storybook/components/related-components/descriptions/alert-banner-description.jsx b/src/storybook/components/related-components/descriptions/alert-banner-description.jsx new file mode 100644 index 0000000000..e4d2eac395 --- /dev/null +++ b/src/storybook/components/related-components/descriptions/alert-banner-description.jsx @@ -0,0 +1,26 @@ +import { useMemo } from "react"; +import { RelatedComponent } from "../../related-component/related-component"; +import AlertBanner from "../../../../components/AlertBanner/AlertBanner"; +import AlertBannerText from "../../../../components/AlertBanner/AlertBannerText/AlertBannerText"; + +export const AlertBannerDescription = () => { + const component = useMemo(() => { + const style = { + width: "90%" + }; + return ( +
+ + + +
+ ); + }, []); + return ( + + ); +}; diff --git a/src/storybook/components/related-components/descriptions/attention-box-description.jsx b/src/storybook/components/related-components/descriptions/attention-box-description.jsx new file mode 100644 index 0000000000..174ac16776 --- /dev/null +++ b/src/storybook/components/related-components/descriptions/attention-box-description.jsx @@ -0,0 +1,22 @@ +import { useMemo } from "react"; +import { RelatedComponent } from "../../related-component/related-component"; +import AttentionBox from "../../../../components/AttentionBox/AttentionBox"; + +export const AttentionBoxDescription = () => { + const component = useMemo(() => { + const style = { + width: "90%" + }; + return ( +
+ +
+ ); + }, []); + return ( + + ); +}; diff --git a/src/storybook/components/related-components/descriptions/toast-description.jsx b/src/storybook/components/related-components/descriptions/toast-description.jsx new file mode 100644 index 0000000000..3fd9829117 --- /dev/null +++ b/src/storybook/components/related-components/descriptions/toast-description.jsx @@ -0,0 +1,25 @@ +import { useMemo } from "react"; +import { RelatedComponent } from "../../related-component/related-component"; +import ToastLineWrapper from "../../../../components/Toast/__stories__/ToastLineWrapper"; +import Toast from "../../../../components/Toast/Toast"; + +export const ToastDescription = () => { + const component = useMemo(() => { + const style = { + width: "90%", + display: "flex" + }; + return ( +
+ +
+ ); + }, []); + return ( + + ); +};