Skip to content

Commit

Permalink
Fix Angular 13 drifting dependencies and rome import
Browse files Browse the repository at this point in the history
  • Loading branch information
netwarex committed Dec 5, 2022
1 parent e261d91 commit 0e05095
Show file tree
Hide file tree
Showing 16 changed files with 17,947 additions and 24,587 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.14
v16.16.0
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Gentics UI Core Changelog

## 13.1.0 (2022-12-05)

### Fixes

* Hide close UI element on toast when dismissOnClick is disabled (SUP-14476)
* Fixed min/max value behavior on number input (SUP-12404)
* Fixed `DateTimePicker` and `DateTimePickerControls` rome dependency import which prevented the Date Picker controls to render (SUP-14476)
### Changes

* Upgraded drifting dependencies - especially Webpack 4 to Webpack 5

## 13.0.2 (2022-06-30)

### Features
Expand Down
35 changes: 23 additions & 12 deletions angular.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"cli": {
"analytics": "cf0654bf-8cab-499a-9d12-97a0bb50a155"
},
"version": 1,
"newProjectRoot": "projects",
"projects": {
Expand All @@ -13,14 +10,14 @@
"prefix": "gtx",
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/gentics-ui-core/tsconfig.lib.json",
"project": "projects/gentics-ui-core/ng-package.json"
}
},
"test": {
"builder": "ngx-build-plus:karma",
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"tsConfig": "projects/gentics-ui-core/tsconfig.spec.json",
Expand All @@ -41,14 +38,17 @@
},
"architect": {
"build": {
"builder": "ngx-build-plus:browser",
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"outputPath": "dist/docs",
"index": "src/docs/index.html",
"main": "src/docs/main.ts",
"polyfills": "src/docs/polyfills.ts",
"tsConfig": "projects/docs/tsconfig.app.json",
"extraWebpackConfig": "projects/docs/webpack.partial.js",
"customWebpackConfig": {
"path": "projects/docs/webpack.partial.js",
"replaceDuplicatePlugins": true
},
"assets": [
"src/docs/assets",
{ "glob": "**/*", "input": "../../node_modules/roboto-fontface-woff/fonts/roboto", "output": "./assets/fonts" },
Expand Down Expand Up @@ -90,20 +90,31 @@
"maximumError": "5mb"
}
]
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
}
},
"serve": {
"builder": "ngx-build-plus:dev-server",
"builder": "@angular-builders/custom-webpack:dev-server",
"options": {
"browserTarget": "docs:build",
"extraWebpackConfig": "projects/docs/webpack.partial.js"
"browserTarget": "docs:build"
},
"configurations": {
"production": {
"browserTarget": "docs:build:production"
},
"development": {
"browserTarget": "docs:build:development"
}
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
Expand All @@ -112,7 +123,7 @@
}
},
"test": {
"builder": "ngx-build-plus:karma",
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/docs/test.ts",
"polyfills": "src/docs/polyfills.ts",
Expand Down
Loading

0 comments on commit 0e05095

Please sign in to comment.