File tree Expand file tree Collapse file tree 5 files changed +1824
-1887
lines changed Expand file tree Collapse file tree 5 files changed +1824
-1887
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ check dependencies:
8282 rules :
8383 - when : always
8484 before_script :
85- # add npmrc file with XLTS.dev registry token
85+ # add npmrc file with HeroDevs registry token
8686 - ' [ -z "$NPMRC_FILE"] && echo "Error: environment variable NPMRC_FILE must be defined for this job" && exit 1'
8787 - echo "$NPMRC_FILE" > .npmrc
8888 script :
@@ -101,7 +101,7 @@ increment version:
101101 before_script :
102102 # Set semantic-release author to our own bot user for correct attribution
103103 - apk add --no-cache curl jq
104- # add npmrc file with XLTS.dev registry token
104+ # add npmrc file with HeroDevs registry token
105105 - ' [ -z "$NPMRC_FILE"] && echo "Error: environment variable NPMRC_FILE must be defined for this job" && exit 1'
106106 - echo "$NPMRC_FILE" > .npmrc
107107 # use pipe operator to be able to use a colon in the command
@@ -132,7 +132,7 @@ increment version:
132132 # see: https://docs.gitlab.com/ee/ci/yaml/#when (additional details section)
133133 allow_failure : true
134134 before_script :
135- # add npmrc file with XLTS.dev registry token
135+ # add npmrc file with HeroDevs registry token
136136 - ' [ -z "$NPMRC_FILE"] && echo "Error: environment variable NPMRC_FILE must be defined for this job" && exit 1'
137137 - echo "$NPMRC_FILE" > .npmrc
138138 - npm -v
Original file line number Diff line number Diff line change @@ -60,11 +60,13 @@ This section covers installation steps to build the app's web code on your local
6060 Add the `.npmrc` file
6161
6262 This project uses [AngularJS](https://angularjs.org/) which reached end of life in January 2022.
63- This project uses a long-term support version of AngularJS provided by [XLTS.dev ](https://www.xlts.dev/ ).
63+ This project uses a long-term support version of AngularJS provided by [HeroDevs ](https://www.herodevs.com/support/nes-angularjs ).
6464 If you have an `npm` token to retrieve this version from their registry, place the `.npmrc` file containing the credentials in the root directory.
6565
6666 You can also use the [last available version](https://www.npmjs.com/package/angular) of AngularJS (version 1.8.3).
67- To do so, change the value for the `angular` dependency in `package.json` to `angular@1.8.3` and run
67+ To do so, change the value for the `angular` dependency to `angular@1.8.3` in `package.json`.
68+ Also change all other auxiliary angular dependencies accessed through `neverendingsupport` to their latest default versions, as provided by npm.
69+ Then, run:
6870
6971 ```shell
7072 npm install
You can’t perform that action at this time.
0 commit comments