Klaus Bayrhammer
Klaus Bayrhammer
The formatter-jar should be deployed on maven central. The latest webapp wars should be downloadable.
As discussed in #8 ``` javascript gulp.task('deploy', function(){ gulp.src(['./package.json']) .pipe(bump({type:'patch'})) .pipe(gulp.dest('./')) .pipe(git.commit('bumps package version')) .pipe(filter('package.json')) .pipe(tag_version()) .pipe(git.push('origin', 'master', {args: " --tags"}, function (err) { if (err) throw err; })); });...
This PR contains - upgrade to the typescript-version (2.9 -> 5.4) - exchanging the testing framework (from mocha, chai, sinon, nyc to vitest). This simplifies the mocking which might be...