如何使用特定和 exaclty 包版本重新制作角度工作区?
Posted
技术标签:
【中文标题】如何使用特定和 exaclty 包版本重新制作角度工作区?【英文标题】:How to remake an angular workspace with specific and exaclty packages versions? 【发布时间】:2022-01-18 01:28:08 【问题描述】:我正在尝试重新制作 Angular 工作区,包括我的库项目和使用 Angular 11 的测试应用程序,但如果我在运行时安装了 @angular/cli@v11.0.0
ng new my-workspace-v11 --create-application false
我得到了这个 package.json
"name": "my-workspace-v11",
"version": "0.0.0",
"scripts":
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint"
,
"private": true,
"dependencies":
"@angular/animations": "~11.1.1",
"@angular/common": "~11.1.1",
"@angular/compiler": "~11.1.1",
"@angular/core": "~11.1.1",
"@angular/forms": "~11.1.1",
"@angular/platform-browser": "~11.1.1",
"@angular/platform-browser-dynamic": "~11.1.1",
"@angular/router": "~11.1.1",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.3"
,
"devDependencies":
"@angular/cli": "~11.1.2",
"@angular/compiler-cli": "~11.1.1",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.2.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.1.2"
我在使用 jasmine-core 时遇到了错误。 所以,当我将这个库用于特定的角度项目时,我需要它适用于他们, 我想获得一个工作区:
...
"@angular/cdk": "^11.0.1",
"@angular/common": "^11.0.3",
"@angular/compiler": "^11.0.3",
"@angular/core": "^11.0.3",
...
并做一些事情来避免包的任何冲突。 这样做的过程是什么?
即使我询问在生产服务器上运行的特定角度项目的所有确切版本,我也会遇到构建错误。
我试过了:
"name": "my-workspace-v11",
"version": "0.0.0",
"scripts":
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint"
,
"private": true,
"dependencies":
"@angular/animations": "11.0.3",
"@angular/cdk": "11.0.1",
"@angular/common": "11.0.3",
"@angular/compiler": "11.0.3",
"@angular/core": "11.0.3",
"@angular/forms": "11.0.3",
"@angular/platform-browser": "11.0.2",
"@angular/platform-browser-dynamic": "11.0.2",
"@angular/router": "11.0.2",
"rxjs": "6.4.0",
"tslib": "1.10.0",
"zone.js": "0.9.1"
,
"devDependencies":
"@angular/cli": "11.0.2",
"@angular/compiler-cli": "11.0.2",
"@types/jasmine": "3.3.16",
"@types/node": "8.9.5",
"codelyzer": "5.2.1",
"jasmine-core": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.6",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.5.1",
"protractor": "5.4.2",
"ts-node": "7.0.1",
"tslint": "5.15.0",
"typescript": "4.0.5"
我明白了:
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: nua-workspace-v11@0.0.0
npm ERR! Found: rxjs@6.4.0
npm ERR! node_modules/rxjs
npm ERR! rxjs@"6.4.0" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer rxjs@"^6.5.3" from @angular/core@11.0.3
npm ERR! node_modules/@angular/core
npm ERR! @angular/core@"11.0.3" from the root project
npm ERR! peer @angular/core@"11.0.3" from @angular/animations@11.0.3
npm ERR! node_modules/@angular/animations
npm ERR! @angular/animations@"11.0.3" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
这怎么可能?
【问题讨论】:
要从另一个项目安装和重新创建完全相同的依赖关系树,您还必须复制package-lock.json
文件,然后运行 npm i
。你不需要运行ng new
。
@NeluB,我不是要重新安装项目,而是要创建新的工作区来测试我的库,但是使用特定版本的包,所以我没有包锁。此工作区的 json。我只有在生产服务器中运行的项目中的 package.json 和 package-lock.json。
当您使用它时,我建议您创建一个NX workspace。它支持许多角度工作空间无法处理的功能,例如从另一个库引用一个库等等。这是构建 monorepos 的推荐方法
【参考方案1】:
仔细检查您尝试复制的项目是否具有您正在寻找的版本,注意次要版本和补丁版本
"@angular/core": "11.0.3"
vs
"@angular/core": "^11.0.3"
由于^
,安装的版本可能与您预期的不同
【讨论】:
【参考方案2】:问题应该是当你使用 npm@7.x.x 或更高版本时
(我正在使用 npm@8.1.0),对等依赖项可能会阻止安装过程。这些版本更加严格。
为了避免这个问题,npm install --legacy-peer-deps
命令完成了这项工作。
在我的例子中,使用我的库的项目是使用 npm 6.x.x 构建的,这就是为什么之前接受某些包不兼容性而不是现在接受的原因。
【讨论】:
以上是关于如何使用特定和 exaclty 包版本重新制作角度工作区?的主要内容,如果未能解决你的问题,请参考以下文章
如何制作需要特定导入的混合包 React/React-Native
将corosync安装包以及依赖加入到KYLIN-3.3-4版本中,重新制作iso,形成新的版本,要求系统安装后默认自动安装了corosync
如何重新组合tcpdump为特定设备IP看到的IP分段数据包