1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-25 09:15:49 +03:00

Changelog removal (#3730)

* CleanUp: Removing changelog (available online).

* Corrected gulpfile
This commit is contained in:
J Blackman 2024-01-05 01:08:32 +11:00 committed by GitHub
parent ad1fb86d51
commit 072d16c6ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 38 additions and 686 deletions

View file

@ -102,7 +102,6 @@ const distCommon = gulp.series(
dist_node_modules_css,
dist_ol_css,
dist_less,
dist_changelog,
dist_locale,
dist_libraries,
dist_resources,
@ -410,11 +409,6 @@ function dist_less() {
.pipe(gulp.dest(DIST_DIR));
}
function dist_changelog() {
return gulp.src('changelog.html')
.pipe(gulp.dest(`${DIST_DIR}tabs/`));
}
function dist_locale() {
return gulp.src('./locales/**/*', { base: 'locales'})
.pipe(gulp.dest(`${DIST_DIR}locales`));