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

Gentics UI Core v10.0 release #74

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ platformBrowserDynamic().bootstrapModule(AppModule,

## View Encapsulation

Do not use any ViewEncapsulation other than `ViewEncapsulation.None` (which is the default), because some UI Core components use the CSS `/deep/` selector.
Do not use any ViewEncapsulation other than `ViewEncapsulation.None` (which is the default), because some UI Core components use the CSS `::ng-deep` selector.

## Lazy Loading of Routes

Expand Down
12 changes: 6 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"newProjectRoot": "projects",
"projects": {
"gentics-ui-core": {
"root": "",
"root": "projects/gentics-ui-core",
"sourceRoot": "src",
"projectType": "library",
"prefix": "gtx",
Expand All @@ -13,7 +13,7 @@
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "projects/gentics-ui-core/tsconfig.lib.json",
"project": "projects/gentics-ui-core/ng-package.json"
"project": "projects/gentics-ui-core/ng-package.json",
}
},
"test": {
Expand Down Expand Up @@ -50,18 +50,18 @@
},
"architect": {
"build": {
"builder": "ngx-build-plus:build",
"builder": "ngx-build-plus: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": "webpack.partial.js",
"extraWebpackConfig": "projects/docs/webpack.partial.js",
"assets": [
"src/docs/assets",
{ "glob": "**/*", "input": "../../node_modules/roboto-fontface-woff/fonts/roboto", "output": "./assets/fonts" },
{ "glob": "**/*", "input": "../../node_modules/material-icons-font/fonts", "output": "./assets/fonts" },
{ "glob": "**/*", "input": "../../node_modules/material-icons-font/fonts", "output": "./assets/fonts" }
],
"styles": [
"src/docs/app.scss",
Expand Down Expand Up @@ -106,7 +106,7 @@
"builder": "ngx-build-plus:dev-server",
"options": {
"browserTarget": "docs:build",
"extraWebpackConfig": "webpack.partial.js"
"extraWebpackConfig": "projects/docs/webpack.partial.js"
},
"configurations": {
"production": {
Expand Down
Loading