Skip to content

Commit

Permalink
chore(deps): update angular to v12 (#588)
Browse files Browse the repository at this point in the history
* chore(deps): update angular

* chore(deps): update angular

* fix(deps): refactor code to run with angular 12

* chore(deps): update eslint

* chore(deps): update eslint to the right version

* fix(script): resolve prod build process

* chore(deps): updates

* chore(deps): update

* Revert "chore(deps): update"

This reverts commit d63ffa5.

* test(action): fix confirmation dialog tests
  • Loading branch information
kilchenmann committed Nov 12, 2021
1 parent 43fcbfa commit 37e65a8
Show file tree
Hide file tree
Showing 17 changed files with 16,490 additions and 11,709 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Expand Up @@ -25,7 +25,7 @@ module.exports = {
"plugins": [
"eslint-plugin-import",
"eslint-plugin-jsdoc",
"@angular-eslint/eslint-plugin",
"@angular-eslint",
"@typescript-eslint"
],
"rules": {
Expand Down
4 changes: 0 additions & 4 deletions README.md
Expand Up @@ -10,10 +10,6 @@ This app is a simple user interface for the Data and Service Center for the Huma

DSP-APP implements [DSP-JS-LIB](https://www.npmjs.com/package/@dasch-swiss/dsp-js) to connect with [DSP-API](https://docs-api.dasch.swiss/03-apis/). DSP (DaSCH Service Platform) is a software framework for storing, sharing, and working with primary resources and data in the humanities.

Additionaly it's built with [DSP-UI-LIB](https://www.npmjs.com/package/@dasch-swiss/dsp-ui) — reusable DSP specific Angular modules.

Please check our [DSP Release Compatibility Matrix](https://docs.google.com/spreadsheets/d/e/2PACX-1vQe-0nFKqYHwHT3cNI2M_ZCycKOgDZBxtaabxEQDDkNKJf6funMVrJBJPgMFEJdiBdCesahUhURN6MS/pubhtml) to use this app with the correct and required versions of the dependent packages.

DSP-APP is [free software](http://www.gnu.org/philosophy/free-sw.en.html), released under [GNU Affero General Public](http://www.gnu.org/licenses/agpl-3.0.en.html) license.

## Documentation
Expand Down
18 changes: 14 additions & 4 deletions angular.json
Expand Up @@ -37,8 +37,13 @@
],
"assets": [
"src/favicon.ico",
"src/assets",
"src/config"
"src/config",
{
"glob": "**/*",
"input": "src/assets/",
"ignore": ["**/*.scss"],
"output": "/assets/"
}
],
"styles": [
"src/styles.scss"
Expand Down Expand Up @@ -140,8 +145,13 @@
],
"assets": [
"src/favicon.ico",
"src/assets",
"src/config"
"src/config",
{
"glob": "**/*",
"input": "src/assets/",
"ignore": ["**/*.scss"],
"output": "/assets/"
}
]
}
},
Expand Down

0 comments on commit 37e65a8

Please sign in to comment.