Skip to content

Commit

Permalink
Merge branch 'release/6.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
olliefreeman committed Aug 24, 2021
2 parents 95223ad + 5f12e21 commit cc13ab4
Show file tree
Hide file tree
Showing 42 changed files with 712 additions and 396 deletions.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ pipeline {
nvm('') {
catchError(buildResult: 'UNSTABLE', stageResult: 'UNSTABLE') {
sh 'npm run test-with-coverage'
sh 'npm run test-clean'
sh 'npm run test-clearCache'
sh "rm -rf /tmp/jest_${JOB_BASE_NAME}"
}
}
}
Expand Down
7 changes: 6 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@
"aot": true,
"assets": [
"src/assets/favicon.ico",
"src/assets"
"src/assets",
{
"glob": "open-id-connect-redirect.html",
"input": "src/static-pages",
"output": "/redirects"
}
],
"styles": [
"src/styles.scss",
Expand Down
5 changes: 3 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = {
},
globals: {
'ts - jest': {
tsConfig: 'tsconfig.spec.json',
tsconfig: 'tsconfig.spec.json',
stringifyContentPathRegex: '\\.html'
}
},
Expand All @@ -53,5 +53,6 @@ module.exports = {
],
transformIgnorePatterns: [
'node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)' // Ignore files inside node_modules folder
]
],
cacheDirectory: '/tmp/jest_'+ (process.env.JOB_BASE_NAME || 'cache')
};
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mdm-ui",
"version": "6.4.0",
"version": "6.5.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand All @@ -10,7 +10,7 @@
"test": "jest",
"test-with-coverage": "jest --coverage",
"test-watch": "jest --watch",
"test-clean": "jest --clearCache",
"test-clearCache": "jest --clearCache",
"lint": "ng lint",
"eslint": "tsc --noEmit && eslint . --ext ts --quiet --fix",
"eslint-nofix": "tsc --noEmit && eslint . --ext ts --quiet",
Expand Down Expand Up @@ -38,7 +38,7 @@
"@bpmn-io/dmn-migrate": "^0.4.3",
"@ctrl/ngx-codemirror": "4.0.1",
"@fortawesome/fontawesome-free": "5.15.1",
"@maurodatamapper/mdm-resources": "git+https://github.com/MauroDataMapper/mdm-resources.git#4.8.0",
"@maurodatamapper/mdm-resources": "git+https://github.com/MauroDataMapper/mdm-resources.git#4.9.0",
"@uirouter/angular": "7.0.0",
"@uirouter/core": "6.0.6",
"@uirouter/rx": "0.6.5",
Expand Down
Loading

0 comments on commit cc13ab4

Please sign in to comment.