Skip to content

Commit

Permalink
Release 3.26.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSlimvReal authored Nov 29, 2023
2 parents 4273959 + 7309cd8 commit 4eba5fe
Show file tree
Hide file tree
Showing 73 changed files with 12,098 additions and 9,684 deletions.
12 changes: 7 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
],
"stylePreprocessorOptions": {
"includePaths": [
"node_modules/"
"node_modules/",
"src/styles"
]
},
"vendorChunk": true,
Expand Down Expand Up @@ -87,18 +88,18 @@
"options": {},
"configurations": {
"production": {
"browserTarget": "ndb-core:build:production"
"buildTarget": "ndb-core:build:production"
},
"development": {
"browserTarget": "ndb-core:build:development"
"buildTarget": "ndb-core:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ndb-core:build"
"buildTarget": "ndb-core:build"
}
},
"test": {
Expand All @@ -116,7 +117,8 @@
],
"stylePreprocessorOptions": {
"includePaths": [
"node_modules/"
"node_modules/",
"src/styles"
]
},
"assets": [
Expand Down
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# Run the following commands from the root folder to build, run and kill the application
# >> docker build -f build/Dockerfile -t aam-digital .
# >> docker run -p=80:80 aam-digital
FROM node:16.14.2-alpine3.15 AS builder
FROM node:18.16.1-alpine3.18 AS builder
WORKDIR /app

COPY package*.json ./
RUN npm ci --no-progress

RUN $(npm bin)/ng version
RUN npm run-script ng version

COPY . .

Expand Down
Loading

0 comments on commit 4eba5fe

Please sign in to comment.