Closed Jalan-Ember-SN closed 1 year ago
Make sure you've followed all the upgrade steps in the readme:
I followed those steps and then encountered a new error relating to rimraf. with some help from another developer I was able to get up and running again. The steps:
"build": "rimraf dist/* && tsc && vite build --watch false",
to "build": "rimraf --glob dist/* && tsc && vite build --watch false",
(adding the --glob flag)"skipLibCheck": false,
to "skipLibCheck": true,
src\js\settings
folder. In my case, it was not in use. after these steps, yarn build
completed successfully and I was able to run the extension in dev mode again 😄
Glad to hear it's working, likely since you ran yarn upgrade
you had a bunch of stuff that was now longer compatible and needed tweaking.
Hello, I added this as a comment here https://github.com/hyperbrew/bolt-cep/issues/78#issuecomment-1646259308 but am opening it's own issue as I am not sure if it a separate problem! copy pasting what I wrote there
" Hi! I was having this issue and tried running
yarn add vite-cep-plugin
and thenyarn build
again. However it failed with the following error:I thought perhaps some other packages could be out of date so tried running
yarn upgrade
but that didn't seem to help. I am not sure what to make of this. Any thoughts appreciated! "My next step is to port the project to a fresh install of Bolt CEP but that will be time consuming and have its own host of challenges I'm sure :)