Skip to content
Draft
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ npm-debug.log
yarn-error.log
testem.log
/typings
verticalgmbh-components-*.tgz

# System Files
.DS_Store
Expand Down
15 changes: 10 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/vertical-components/tsconfig.lib.json",
"project": "projects/vertical-components/ng-package.json"
Expand Down Expand Up @@ -63,15 +63,20 @@
"main": "projects/vertical-components-demo/src/main.ts",
"polyfills": "projects/vertical-components-demo/src/polyfills.ts",
"tsConfig": "projects/vertical-components-demo/tsconfig.app.json",
"aot": true,
"assets": [
"projects/vertical-components-demo/src/favicon.ico",
"projects/vertical-components-demo/src/assets"
],
"styles": [
"projects/vertical-components-demo/src/styles.scss"
],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -84,7 +89,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
Expand All @@ -101,7 +105,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pool:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '14.5'
displayName: 'Install Node.js'

- script: |
Expand Down
Loading