You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After doing a clean fork I run yarn install to get all the dependencies. I try to run yarn start but it cannot resolve a single module from node_modules, despite them all being in there.
This feels like a configuration issue but google has not been helpful, any advice would be appreciated, even if this turns out to be a total beginner mistake. Thanks
Example after running yarn start
../../src/components/src/common/icons/effects/ink.tsx:5:22:
5 │ import PropTypes from 'prop-types';
╵ ~~~~~~~~~~~~
You can mark the path "prop-types" as external to exclude it from the bundle, which will remove
this error and leave the unresolved path in the bundle.
✘ [ERROR] Could not resolve "react"
../../src/components/src/effects/effect-time-selector.tsx:4:42:
4 │ import React, {useMemo, useCallback} from 'react';
╵ ~~~~~~~
You can mark the path "react" as external to exclude it from the bundle, which will remove this
error and leave the unresolved path in the bundle.
✘ [ERROR] Could not resolve "styled-components"
../../src/components/src/effects/effect-time-selector.tsx:5:32:
5 │ import styled, {withTheme} from 'styled-components';
╵ ~~~~~~~~~~~~~~~~~~~
You can mark the path "styled-components" as external to exclude it from the bundle, which will
remove this error and leave the unresolved path in the bundle.
✘ [ERROR] Could not resolve "classnames"
../../src/components/src/effects/effect-time-selector.tsx:6:23:
6 │ import classNames from 'classnames';
╵ ~~~~~~~~~~~~
You can mark the path "classnames" as external to exclude it from the bundle, which will remove
this error and leave the unresolved path in the bundle.
The text was updated successfully, but these errors were encountered:
After doing a clean fork I run
yarn install
to get all the dependencies. I try to runyarn start
but it cannot resolve a single module fromnode_modules
, despite them all being in there.This feels like a configuration issue but google has not been helpful, any advice would be appreciated, even if this turns out to be a total beginner mistake. Thanks
Example after running
yarn start
The text was updated successfully, but these errors were encountered: