Skip to content

Commit

Permalink
Merge pull request #525 from TAMULib/fix_npm_build
Browse files Browse the repository at this point in the history
Fix dependency related build problems by downgrading.
  • Loading branch information
rmathew1011 authored Sep 13, 2024
2 parents 9a555c0 + 37f0183 commit 3c12d65
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 14 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Changelog

## [2.0.5] - 12-02-22
## [2.0.5-rc.2] - 09-13-24
### Resolves

- Downgrading Angular dependencies to 12.2.16 to fix npm build.
- Added `"cheerio": "1.0.0-rc.10"` to resolve issues with the compodocs command not running correctly.
- Added `"typescript": ">=4.2.3 <4.4"` to fix npm build.
- Added `"whatwg-mimetype": "^3.0.0"` to fix npm build.

## [2.0.5-rc.1] - 12-02-22
### Resolves

- WYSIWYG save is not working. (#516)
Expand Down
27 changes: 16 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "git",
"url": "git+https://github.com/TAMULib/weaver-components.git"
},
"version": "2.0.5-rc.1",
"version": "2.0.5-rc.2",
"private": false,
"license": "MIT",
"engines": {
Expand Down Expand Up @@ -61,11 +61,11 @@
"test:ci": "npm run test:audit && npm run test:coverage"
},
"dependencies": {
"@angular/animations": "12.2.16",
"@angular/elements": "12.2.16",
"@angular/forms": "12.2.16",
"@angular/localize": "12.2.16",
"@angular/platform-browser-dynamic": "12.2.16",
"@angular/animations": "12.2.17",
"@angular/elements": "12.2.17",
"@angular/forms": "12.2.17",
"@angular/localize": "12.2.17",
"@angular/platform-browser-dynamic": "12.2.17",
"@ng-bootstrap/ng-bootstrap": "10.0.0",
"@ngrx/effects": "12.5.1",
"@ngrx/entity": "12.5.1",
Expand All @@ -78,10 +78,10 @@
"tinymce": "6.2.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "12.2.16",
"@angular-devkit/build-angular": "12.2.17",
"@angular-eslint/eslint-plugin": "14.1.2",
"@angular-eslint/eslint-plugin-template": "14.1.2",
"@angular/cli": "12.2.16",
"@angular/cli": "12.2.17",
"@compodoc/compodoc": "1.1.19",
"@lhci/cli": "0.9.0",
"@ngrx/schematics": "12.5.1",
Expand Down Expand Up @@ -126,14 +126,19 @@
"zone.js": "0.11.8"
},
"overrides": {
"@angular/compiler": "12.2.16",
"@angular/core": "12.2.16",
"@angular/compiler": "12.2.17",
"@angular/compiler-cli": "12.2.17",
"@angular/core": "12.2.17",
"@types/eslint": "6.8.1",
"@types/node": "18.11.10",
"cheerio": "1.0.0-rc.10",
"chokidar": "3.5.3",
"fs-extra": "10.1.0",
"glob": "7.2.3",
"latest-version": "7.0.0",
"selfsigned": "2.1.1",
"tslib": "2.4.0"
"tslib": "2.4.0",
"typescript": ">=4.2.3 <4.4",
"whatwg-mimetype": "^3.0.0"
}
}
4 changes: 2 additions & 2 deletions projects/wvr-elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wvr/elements",
"version": "2.0.5-rc.1",
"version": "2.0.5-rc.2",
"description": "Collection of angular components for Weaver's Custom Web Component UI",
"author": "Texas A&M University Libraries",
"private": false,
Expand All @@ -27,7 +27,7 @@
"tslib": "2.4.0"
},
"peerDependencies": {
"@angular/common": "12.2.16",
"@angular/common": "12.2.17",
"handlebars": "4.7.7"
}
}

0 comments on commit 3c12d65

Please sign in to comment.