У меня есть библиотека Angular с версией ниже
{
"name": "@falcon/core",
"version": "0.0.1",
"peerDependencies": {
"@angular/common": "^9.1.4",
"@angular/core": "^9.1.4",
"tslib": "^1.10.0",
"@angular/material": "^9.2.2",
"@angular/animations": "^9.1.4",
"@angular/cdk": "^9.2.2",
"@angular/flex-layout": "^9.0.0-beta.29"
}
}
Я собрал библиотеку с npm build @falcon/core --prod
, после этого в папке dist с терминалом я сделал npm publish --access=public
Но получил ошибку как
npm ERR! code E403
npm ERR! 403 403 Forbidden - PUT https://registry.npmjs.org/@falcon%2fcore - Forbidden
npm ERR! 403 In most cases, you or one of your dependencies are requesting
npm ERR! 403 a package version that is forbidden by your security policy.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/macbook/.npm/_logs/2020-05-01T05_56_09_718Z-debug.log
Ошибка в основном говорит о версии пакета, которая запрещена вашей политикой безопасности. как мне управлять версией пакета?