|
|
- /*
-
- ESP8266 file system builder
-
- Copyright (C) 2016 by Xose Pérez <xose dot perez at gmail dot com>
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
- */
-
- // -----------------------------------------------------------------------------
- // File system builder
- // -----------------------------------------------------------------------------
-
- const fs = require('fs');
- const gulp = require('gulp');
- const plumber = require('gulp-plumber');
- const htmlmin = require('gulp-htmlmin');
- const cleancss = require('gulp-clean-css');
- const uglify = require('gulp-uglify');
- const gzip = require('gulp-gzip');
- const del = require('del');
- const useref = require('gulp-useref');
- const gulpif = require('gulp-if');
- const inline = require('gulp-inline');
- const inlineImages = require('gulp-css-base64');
- const favicon = require('gulp-base64-favicon');
-
- const dataFolder = 'espurna/data/';
-
- gulp.task('clean', function() {
- del([ dataFolder + '*']);
- return true;
- });
-
- gulp.task('files', ['clean'], function() {
- return gulp.src([
- 'html/**/*.{jpg,jpeg,png,ico,gif}',
- 'html/fsversion'
- ])
- .pipe(gulp.dest(dataFolder));
- });
-
- gulp.task('buildfs_embed', ['buildfs_inline'], function() {
-
- var source = dataFolder + 'index.html.gz';
- var destination = dataFolder + '../config/data.h';
-
- var wstream = fs.createWriteStream(destination);
- wstream.on('error', function (err) {
- console.log(err);
- });
-
- var data = fs.readFileSync(source);
-
- wstream.write('#define index_html_gz_len ' + data.length + '\n');
- wstream.write('const uint8_t index_html_gz[] PROGMEM = {')
-
- for (i=0; i<data.length; i++) {
- wstream.write('0x' + ('00' + data[i].toString(16)).slice(-2));
- if (i<data.length-1) wstream.write(',');
- }
-
- wstream.write('};\n')
- wstream.end();
-
- });
-
- gulp.task('buildfs_inline', ['clean'], function() {
- return gulp.src('html/*.html')
- .pipe(favicon())
- .pipe(inline({
- base: 'html/',
- js: uglify,
- css: [cleancss, inlineImages],
- disabledTypes: ['svg', 'img']
- }))
- .pipe(htmlmin({
- collapseWhitespace: true,
- removeComments: true,
- minifyCSS: true,
- minifyJS: true
- }))
- .pipe(gzip())
- .pipe(gulp.dest(dataFolder));
- })
-
- gulp.task('buildfs_split', ['files'], function() {
- return gulp.src('html/*.html')
- .pipe(useref())
- .pipe(plumber())
- .pipe(gulpif('*.css', cleancss()))
- .pipe(gulpif('*.js', uglify()))
- .pipe(gulpif('*.html', htmlmin({
- collapseWhitespace: true,
- removeComments: true,
- minifyCSS: true,
- minifyJS: true
- })))
- .pipe(gzip())
- .pipe(gulp.dest(dataFolder));
- });
-
- gulp.task('default', ['buildfs_inline']);
|