Steve Ross
Steve Ross
nope but it looks like your project is missing that package... `npm i -D babel-plugin-dynamic-import-webpack` then retry
Does `stencil start` work? looks like you have an error in account.js ``` ERROR in ./assets/js/theme/account.js Module build failed (from ./node_modules/babel-loader/lib/index.js): TypeError: C:\dev\bigcommerce\GoCpap+(07-27-2021)-1\assets\js\theme\account.js: Cannot read property 'has' of undefined ```
Is your theme forked from cornerstone? Did this work prior to 3.5.x? Tree shaking in loash may remove `has()` see: https://github.com/bigcommerce/cornerstone/blob/master/webpack.common.js#L63 repo for lodash-webpack-plugin: https://github.com/lodash/lodash-webpack-plugin
that is your issue... from the readme: ``` The following features are removed by default (biggest savings first): paths : Deep property path support for methods like _.get, _.has, & ...
node binaries don't exist on for node versions < 15 on ARM... do this prior to your install... ```sh arch -x86_64 zsh # if you're using nvm... nvm install 12.22.6...
A few tips for M1 Mac folks... add these to your `.zshrc` (no need to have duplicated shells) ``` # aliases alias x86="arch -x86_64 zsh" alias arm="arch -arm64 zsh" ```...
Would also be nice if you could turn it off! I'd prefer to use HMR in webpack
screenshot your whole browser window and your terminal, otherwise nobody can help
We use git flow to handle this and when we create a release we version the package.json, config.json like so: `config.json` ``` { "name": "Our Project Name v0.1.14", "version": "0.1.14",...
I'm having the same problem (M1 Mac) and I tried the Bisect tool without any success. Can't share my project but I can share my tsconfig: ```{ "compilerOptions": { /*...