Skip to content

Commit 28f0bf0

Browse files
vrubezhnymickaelistria
authored andcommitted
Fix TestAngular.testAngular() test project dependencies
Fixes the following errors during the `npm install` on the test project: npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: [email protected] npm ERR! Found: @angular/[email protected] npm ERR! node_modules/@angular/compiler npm ERR! @angular/compiler@"~8.2.14" from the root project npm ERR! npm ERR! Could not resolve dependency: npm ERR! peer @angular/compiler@"8.1.3" from @angular/[email protected] npm ERR! node_modules/@angular/platform-browser-dynamic npm ERR! @angular/platform-browser-dynamic@"~8.1.1" 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. Signed-off-by: Victor Rubezhny <[email protected]>
1 parent 73c7c29 commit 28f0bf0

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

org.eclipse.wildwebdeveloper.tests/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Tests for WildWebDeveloper
44
Bundle-SymbolicName: org.eclipse.wildwebdeveloper.tests;singleton:=true
5-
Bundle-Version: 0.4.12.qualifier
5+
Bundle-Version: 0.4.13.qualifier
66
Bundle-Vendor: Eclipse Wild Web Developer
77
Automatic-Module-Name: org.eclipse.wildwebdeveloper.tests
88
Bundle-RequiredExecutionEnvironment: JavaSE-11

org.eclipse.wildwebdeveloper.tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<version>0.5.0-SNAPSHOT</version>
88
</parent>
99
<packaging>eclipse-test-plugin</packaging>
10-
<version>0.4.12-SNAPSHOT</version>
10+
<version>0.4.13-SNAPSHOT</version>
1111
<build>
1212
<plugins>
1313
<plugin>

org.eclipse.wildwebdeveloper.tests/testProjects/angular-app/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "~8.1.1",
15-
"@angular/cli": "^8.1.1",
16-
"@angular/common": "~8.1.1",
17-
"@angular/compiler": "~8.1.1",
18-
"@angular/core": "~8.1.1",
19-
"@angular/forms": "~8.1.1",
20-
"@angular/platform-browser": "~8.1.1",
21-
"@angular/platform-browser-dynamic": "~8.1.1",
22-
"@angular/router": "~8.1.1",
14+
"@angular/animations": "~8.2.14",
15+
"@angular/cli": "^8.2.14",
16+
"@angular/common": "~8.2.14",
17+
"@angular/compiler": "~8.2.14",
18+
"@angular/core": "~8.2.14",
19+
"@angular/forms": "~8.2.14",
20+
"@angular/platform-browser": "~8.2.14",
21+
"@angular/platform-browser-dynamic": "~8.2.14",
22+
"@angular/router": "~8.2.14",
2323
"@angular-devkit/build-angular": "0.801.1",
2424
"core-js": "^2.5.4",
2525
"rxjs": "~6.4.0",
2626
"tslib": "^1.9.0",
2727
"zone.js": "~0.9.1"
2828
}
29-
}
29+
}

0 commit comments

Comments
 (0)