diff --git a/README.md b/README.md index f1897c9..34009a2 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Install ngx-loading via NPM, using the command below. npm install --save ngx-loading ``` -NOTE: Version 13 of this package requires Angular 13 as a dependency. If you are using an older version of Angular, please install the relevant version e.g. 2.0.1 for Angular 2: +NOTE: Version 14 of this package requires Angular 14 as a dependency. If you are using an older version of Angular, please install the relevant version e.g. 2.0.1 for Angular 2: ```shell npm install --save ngx-loading@2.0.1 diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..9531408 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,23 @@ +# Node.js with Angular +# Build a Node.js project that uses Angular. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +trigger: +- master +- develop + +pool: + vmImage: ubuntu-latest + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '16.13.1' + displayName: 'Install Node.js' + +- script: | + npm install -g @angular/cli + npm install + ng build ngx-loading + displayName: 'npm install and build'