Skip to content

Commit 76f4660

Browse files
authored
deps: update to angular 18 (#2516)
1 parent e3d9905 commit 76f4660

File tree

100 files changed

+4163
-4753
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+4163
-4753
lines changed

.github/workflows/pull-request-update-or-push-tag.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,6 @@ jobs:
171171
- name: Checkout repository files
172172
uses: actions/checkout@v4
173173

174-
- name: Echo Event
175-
run: |
176-
echo "${{ env.GITHUB_REF }}"
177-
echo "${{ github.event.ref }}"
178-
echo "${{ toJSON(github.event) }}"
179-
180174
- name: Extract tag (release)
181175
if: ${{ github.event.ref != '' }}
182176
run: echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

angular.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"outputPath": "dist",
1818
"index": "src/index.html",
1919
"main": "src/main.ts",
20-
"tsConfig": "src/tsconfig.app.json",
20+
"tsConfig": "tsconfig.app.json",
2121
"polyfills": "src/polyfills.ts",
2222
"i18nMissingTranslation": "warning",
2323
"assets": [
@@ -109,7 +109,7 @@
109109
"src/polyfills.ts",
110110
"zone.js/testing"
111111
],
112-
"tsConfig": "src/tsconfig.spec.json",
112+
"tsConfig": "tsconfig.spec.json",
113113
"styles": [
114114
"src/styles/styles.scss",
115115
"src/styles/themes/ndb-theme.scss"
@@ -198,9 +198,12 @@
198198
}
199199
},
200200
"cli": {
201-
"analytics": "0bd2cce5-bfb0-4375-af96-a8222d782810",
201+
"cache": {
202+
"enabled": true
203+
},
202204
"schematicCollections": [
203205
"@angular-eslint/schematics"
204-
]
206+
],
207+
"analytics": "3a23cbc9-8780-4947-bdf1-57719d16d60d"
205208
}
206209
}

build/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ COPY ./.prettierrc.json /opt/app/
6363
COPY ./angular.json /opt/app/
6464
COPY ./cypress.config.ts /opt/app/
6565
COPY ./karma.conf.js /opt/app/
66+
COPY ./tsconfig.app.json /opt/app/
67+
COPY ./tsconfig.spec.json /opt/app/
6668
COPY ./tsconfig.json /opt/app/
6769
COPY ./ngsw-config.json /opt/app/
6870

@@ -87,6 +89,8 @@ COPY ./src /opt/app/src/
8789
COPY ./build /opt/app/build/
8890
COPY ./angular.json /opt/app/
8991
COPY ./tsconfig.json /opt/app/
92+
COPY ./tsconfig.app.json /opt/app/
93+
COPY ./tsconfig.spec.json /opt/app/
9094
COPY ./ngsw-config.json /opt/app/
9195

9296
ARG APP_VERSION="UNKNOWN"

0 commit comments

Comments
 (0)