When trying to install dependencies locally, the vue git reference is no longer available.
The only way I've been able to get things to work locally to install the extension in developer mode - and not to a perfect extent - is to do the following:
Install "vue": "^1.0.28-csp",
Use Node 14.17.0
Install "node-sass": "^5.0.0",
The CSP version of vue appears to be critical to this extension running, but I can only find that old version^ that's CSP compliant.
Unfortunately, this leaves me with unformatted CSS (no colouring at all), though the extension does load:
Trying to add a newer runtime build to the webpack.config.js(as per docs) doesn't seem to work either:
I'm not sure what the base version of node is for this project but I'd recommend adding it to package.json & adding a .nvmrc for future developers.
N.B. The 'Show notification popup' in the image is what I wanted to play around with implementing as a new feature which is why I pulled this down to work on.
When trying to install dependencies locally, the
vue
git reference is no longer available.The only way I've been able to get things to work locally to install the extension in developer mode - and not to a perfect extent - is to do the following:
"vue": "^1.0.28-csp",
The CSP version of
vue
appears to be critical to this extension running, but I can only find that old version^ that's CSP compliant.Unfortunately, this leaves me with unformatted CSS (no colouring at all), though the extension does load:
Trying to add a newer runtime build to the
webpack.config.js
(as per docs) doesn't seem to work either:I'm not sure what the base version of
node
is for this project but I'd recommend adding it topackage.json
& adding a.nvmrc
for future developers.N.B. The 'Show notification popup' in the image is what I wanted to play around with implementing as a new feature which is why I pulled this down to work on.