Add support for pNpM package manager #13250
Unanswered
btd1337
asked this question in
Ideas / Proposals
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
If you to install dependencies using pNpM many errors will be occur when you try run the app, because this project is missing peer-dependencies. To solve this problem,
package.jsonfile should contain peer-dependency section:{ "name": "quasar-project", "version": "0.0.1", "description": "A Quasar Project", "productName": "Quasar App", "author": "author", "private": true, "scripts": { "build": "quasar build", "build:pwa": "quasar build -m pwa", "lint": "eslint --ext .js,.ts,.vue ./", "test": "echo \"No test specified\" && exit 0" }, "dependencies": { "@quasar/extras": "^1.0.0", "axios": "^0.21.1", "core-js": "^3.6.5", "quasar": "^2.6.0", "vue": "^3.0.0", "vue-i18n": "^9.0.0", "vue-router": "^4.0.0" }, "devDependencies": { "@babel/core": "^7.0.0", "@quasar/app-webpack": "^3.0.0", "@quasar/babel-preset-app": "^2.0.1", "@types/node": "^12.20.21", "@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/parser": "^5.10.0", "@vue/compiler-sfc": "^3.2.33", "@vue/runtime-core": "^3.2.33", "autoprefixer": "^10.4.5", "babel-loader": "^8.2.5", "css-loader": "^5.0.0", "eslint": "^8.10.0", "eslint-config-standard": "^17.0.0-1", "eslint-plugin-import": "^2.19.1", "eslint-plugin-n": "^15.0.0", "eslint-plugin-promise": "^6.0.0", "eslint-plugin-vue": "^8.5.0", "postcss": "^8.1.10", "postcss-import": "^13.0.0", "postcss-loader": "^4.1.0", "postcss-url": "^10.1.1", "sass-loader": "^12.6.0", "ts-loader": "^9.2.8", "typescript": ">=2.8.0", "url-loader": "^4.1.1", "vue-loader": "^17.0.0", "vue-style-loader": "^4.1.3", "webpack": ">=2" }, "peerDependencies": { "@babel/core": "^7.0.0", "@quasar/babel-preset-app": "^2.0.1", "@vue/compiler-sfc": "^3.2.33", "@vue/runtime-core": "^3.2.33", "autoprefixer": "^10.4.5", "css-loader": "^5.0.0", "postcss": "^8.1.10", "postcss-import": "^13.0.0", "postcss-loader": "^4.1.0", "postcss-url": "^10.1.1", "sass-loader": "^12.6.0", "ts-loader": "^9.2.8", "typescript": ">=2.8.0", "url-loader": "^4.1.1", "vue-loader": "^17.0.0", "vue-style-loader": "^4.1.3", "webpack": ">=2" }, "browserslist": [ "last 10 Chrome versions", "last 10 Firefox versions", "last 4 Edge versions", "last 7 Safari versions", "last 8 Android versions", "last 8 ChromeAndroid versions", "last 8 FirefoxAndroid versions", "last 10 iOS versions", "last 5 Opera versions" ], "engines": { "node": ">= 12.22.1", "npm": ">= 6.13.4", "yarn": ">= 1.21.1", "pnpm": ">= 7.0.0" } }Beta Was this translation helpful? Give feedback.
All reactions