Compare commits
4 Commits
97be2a7a63
...
f94201ba5f
Author | SHA1 | Date | |
---|---|---|---|
f94201ba5f | |||
0a52e84933 | |||
c50cd318cc | |||
e0a0f26560 |
|
@ -1,4 +1,4 @@
|
|||
FROM docker.valuya.com/apache-front:2.4.48
|
||||
FROM docker.valuya.com/apache-front:2.4.52
|
||||
ARG CLANG=en
|
||||
|
||||
COPY docker/httpd.conf /var/run/httpd.conf.tmp
|
||||
|
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
|
@ -24,7 +24,7 @@ pipeline {
|
|||
stages {
|
||||
stage ('Build') {
|
||||
steps {
|
||||
nodejs(nodeJSInstallationName: 'node 15', configId: 'npm-global-config') { catchError {
|
||||
nodejs(nodeJSInstallationName: 'node 16', configId: 'npm-global-config') { catchError {
|
||||
ansiColor('xterm') {
|
||||
sh '''
|
||||
rm -rfv dist*
|
||||
|
|
13934
package-lock.json
generated
13934
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
|
@ -21,7 +21,7 @@
|
|||
"@angular/platform-browser-dynamic": "^13.3.3",
|
||||
"@angular/router": "^13.3.3",
|
||||
"core-js": "^2.6.12",
|
||||
"moment-es6": "^1.0.0",
|
||||
"luxon": "^2.3.2",
|
||||
"rxjs": "^6.6.7",
|
||||
"tslib": "^2.0.0",
|
||||
"zone.js": "~0.11.5"
|
||||
|
@ -31,9 +31,10 @@
|
|||
"@angular/cli": "~13.3.3",
|
||||
"@angular/compiler-cli": "^13.3.3",
|
||||
"@angular/language-service": "^13.3.3",
|
||||
"@types/jasmine": "~3.6.11",
|
||||
"@types/jasmine": "~4.0.0",
|
||||
"@types/jasminewd2": "^2.0.10",
|
||||
"@types/node": "^14.18.13",
|
||||
"@types/node": "^16.11.27",
|
||||
"@types/luxon": "^2.3.1",
|
||||
"codelyzer": "^6.0.2",
|
||||
"jasmine-core": "~3.6.0",
|
||||
"jasmine-spec-reporter": "~5.0.0",
|
||||
|
|
|
@ -3,7 +3,7 @@ import {BuildInfoService} from './build-info.service';
|
|||
import {Observable, of} from 'rxjs';
|
||||
import {catchError, defaultIfEmpty, filter, map, publishReplay, refCount} from 'rxjs/operators';
|
||||
import {BuildInfo} from './build-info';
|
||||
import moment from 'moment-es6';
|
||||
import {DateTime} from 'luxon';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
|
@ -36,7 +36,7 @@ export class AppComponent implements OnInit {
|
|||
}
|
||||
|
||||
private parseDate(dateString: string) {
|
||||
const dateMoment = dateString == null ? moment() : moment(dateString);
|
||||
return dateMoment.format('DD/MM/YYYY HH:mm:ss');
|
||||
const parsedDateString = dateString == null ? undefined : DateTime.fromISO(dateString).toISODate();
|
||||
return parsedDateString;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user