When install the "#sencha/ext-web-components" in vue application this error occour? - vue.js

I'm adding this "#sencha/ext-web-components" package in to package.json and run npm install. This error occour?

Related

pnmp falied to install local tgz file in package.lock.json

when I run pnpm install it report this error
 ERR_PNPM_FETCH_404  GET https://registry.npmjs.org/nodename1: Not Found - 404
This error happened while installing the dependencies of nodename2
nodename1 is not in the npm registry, or you have no permission to fetch it.
I checked the lock file founded that nodename1 and nodename2 uses "resolved": "file:.folder/nodename.tgz",.
I can install this in npm successfully.
How can I handel this problem in pnpm?

Module not found: Can't resolve '#react-icons/all-files' in gatsby sanity project

I'm using sanity and gatsby for my project
after I installed react-icons with these command
npm install #react-icons/all-files --save
and import some icons to my project
import { BiHomeSmile } from "#react-icons/all-files/bi/BiHomeSmile";
and run npm run dev i'll get this error
Module not found: Can't resolve '#react-icons/all-files'
but it will gone when I'm using this
import { BiHomeSmile } from "../../node_modules/#react-icons/all-files/bi/BiHomeSmile";
i clean gatsby cach or run npm install it didn't work and I'm unable to remove node module folder if i delete it my project fail to build and run again i dont know why but it didnt worth to delete this folder and run npm install again
first use gatsby clean to remove cache folder next uninstall react-icons module
npm uninstall #react-icons/all-files
install react-icons package throw root permission
sudo npm install #react-icons/all-files --save

Error: Module `#nuxtjs/vuetify` not found. (v2.0.0-beta.2)

Because of fibers error on cPanel/CentOS/Cloudlinux servers, I'm using v2.0.0-beta.2 of #nuxtjs/vuetify in my Nuxt app.
But npm returns error on build or dev running.
No problem with v1.11.2, but the alpha and beta versions have error.
✖ Nuxt Fatal Error
Error: Module `#nuxtjs/vuetify` not found. Please ensure `#nuxtjs/vuetify` is in `devDependencies` and
installed. HINT: During build step, for npm/yarn, `NODE_ENV=production` or `--production` should NOT be
used.
package.json
"devDependencies": {
"#nuxtjs/vuetify": "^2.0.0-beta.2"
}
nuxt.config.js
buildModules: [
'#nuxtjs/vuetify'
]
I deleted the node_modules folder and re-runned the npm install and problem solved.
Go through the bellow commands
Delete node_modules
run npm i if you have previously npm installed on you machine otherwise run npm install then run npm i .
run npm run build
run npm run start
I tried Fred solution but didn't work out for me.
However I run this command npm install #nuxtjs/vuetify -D to install the vuetify component and the problem solved.

Error when I try to run an app in android Ionic 4

I have this error when I try to run my app in android
An unhandled exception occurred: [BABEL] C:\Users\UserName\Desktop\Ionic\MyProject\www\32-es2015.js: Could not find plugin "proposal-numeric-separator". Ensure there is an entry in ./available-plugins.js for it. (While processing: "C:\Users\UserName\Desktop\Ionic\MyProject\node_modules\#babel\preset-env\lib\index.js")
See "C:\Users\UserN~1\AppData\Local\Temp\ng-GJZvQx\angular-errors.log" for further details.
[ERROR] An error occurred while running subprocess ng.
as mentioned in this workaround
delete node_modules and package-lock.json
add "resolutions": { "#babel/preset-env": "^7.8.7" } to package.json
npm install npm-force-resolutions --save-dev
npm install
npx npm-force-resolutions
npm install again
run or build your app
if the error persist in future builds of your app try from step 5 before build it.
open package.json
"dependencies": {
"#babel/compat-data": "7.8.0"
}
run command
npm install
and then build your project and it should work.

vue-cli Vue init webpack template gives unexpected token error

I get the message
vue-cli · Failed to download repo vuejs-templates/webpack: Unexpected token ...
When i attempt to create a new project
Im using
Node version 6.12..3
Npm version 3.10.10
Vue cli version 2.9.2
Update your node by installing the latest version 9.4.0 from their official site
Then update npm by running npm install npm#latest -g
Then run these commands again:
npm install vue
npm install --global vue-cli
vue init webpack my-project-name
Don't forget to change my-project-name to the name of your project.
I've just did that and it successfully created a new Vue project with Webpack