Skip to content
Snippets Groups Projects
Commit e465fdff authored by thomaswoehlke's avatar thomaswoehlke
Browse files

* Fixed #123 split RkiBundeslaenderService into two Services, one for...

* Fixed #123 split RkiBundeslaenderService into two Services, one for bundeslaender and one for landkreise
* Fixed #128 add fields from csv to RkiLandkreiseImport
* Fixed #139 refactor RkiBundeslaenderServiceDownload to new method scheme introduced 07.02.2021
* Fixed #140 move WhoImport to RKI in: rk_service_import.py
* Fixed #125 implement RkiLandkreise
* Fixed #126 implement RkiBundeslaenderImport
parent 28fc64af
No related branches found
No related tags found
No related merge requests found
......@@ -30,16 +30,22 @@ function clean() {
// Bring third party dependencies from node_modules into vendor directory
function modules() {
// Bootstrap
var bootstrap = gulp.src('./node_modules/bootstrap/dist/**/*')
.pipe(gulp.dest('./static/vendor/bootstrap'));
// jQuery
var jquery = gulp.src([
'./node_modules/jquery/dist/*',
'!./node_modules/jquery/dist/core.js'
])
.pipe(gulp.dest('./static/vendor/jquery'));
return merge(bootstrap, jquery);
var popper_js = gulp.src([
'./node_modules/popper.js/dist/**/*'
])
.pipe(gulp.dest('./static/vendor/popper.js'));
var fortawesome = gulp.src([
'./node_modules/popper.js/dist/**/*'
])
.pipe(gulp.dest('./static/vendor/popper.js'));
return merge(bootstrap, jquery, popper_js);
}
// Watch files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment