Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update angular to v12 #588

Merged
merged 13 commits into from Nov 12, 2021
Merged
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