Fix apv2, WIP

This commit is contained in:
2026-06-06 10:21:24 +02:00
parent 6cec1da910
commit 9b77a0c552
130 changed files with 12850 additions and 2830 deletions
+83 -40
View File
@@ -1,40 +1,83 @@
'use strict';
const gulp = require('gulp');
const sass = require('gulp-sass')(require('sass'));
var browserSync = require('browser-sync').create();
function buildStyles() {
return gulp.src('./scss/vermine2047.scss')
.pipe(sass({ outputStyle: 'compressed' }).on('error', sass.logError))
.pipe(gulp.dest('./css'))
.pipe(browserSync.stream());
};
function reloadTemplatesHTML() {
return browserSync.reload("templates/**/*.html")
}
function reloadTemplatesHBS() {
return browserSync.reload("templates/**/*.hbs")
}
exports.buildStyles = buildStyles;
exports.watch = function () {
browserSync.init(
{
server: false,
proxy: {
target: "https://localhost:30000/",
ws: true,
}
}
);
gulp.watch("./templates/**/*.html").on('change', reloadTemplatesHTML);
gulp.watch("./templates/**/*.hbs").on('change', reloadTemplatesHBS);
gulp.watch(['./scss/**/*.scss', './scss/*.scss'], buildStyles);
};
'use strict';
const gulp = require('gulp');
const less = require('gulp-less');
const autoprefixer = require('gulp-autoprefixer');
const cleanCSS = require('gulp-clean-css');
const rename = require('gulp-rename');
var browserSync = require('browser-sync').create();
// ============================================
// LESS Tasks
// ============================================
function buildLess() {
return gulp.src('./less/vermine2047.less')
.pipe(less().on('error', function(err) {
console.error('LESS compilation error:', err.message);
this.emit('end');
}))
.pipe(autoprefixer({
overrideBrowserslist: ['> 1%', 'last 2 versions', 'Firefox ESR'],
cascade: false
}))
.pipe(cleanCSS({ compatibility: 'ie11' }))
.pipe(rename({ suffix: '.min' }))
.pipe(gulp.dest('./css'))
.pipe(browserSync.stream());
}
// Build LESS without minification (for debugging)
function buildLessDev() {
return gulp.src('./less/vermine2047.less')
.pipe(less().on('error', function(err) {
console.error('LESS compilation error:', err.message);
this.emit('end');
}))
.pipe(autoprefixer({
overrideBrowserslist: ['> 1%', 'last 2 versions', 'Firefox ESR'],
cascade: false
}))
.pipe(rename({ suffix: '.dev' }))
.pipe(gulp.dest('./css'))
.pipe(browserSync.stream());
}
function watchLess() {
gulp.watch(['./less/**/*.less', './less/*.less'], buildLess);
}
function reloadTemplatesHTML() {
return browserSync.reload("templates/**/*.html");
}
function reloadTemplatesHBS() {
return browserSync.reload("templates/**/*.hbs");
}
// ============================================
// Exports
// ============================================
exports.buildLess = buildLess;
exports.buildLessDev = buildLessDev;
exports.buildCSS = gulp.series(buildLess);
exports.buildAllCSS = gulp.series(buildLess, buildLessDev);
exports.watch = function () {
browserSync.init({
server: false,
proxy: {
target: "https://localhost:30000/",
ws: true,
}
});
// Watch templates
gulp.watch("./templates/**/*.html").on('change', reloadTemplatesHTML);
gulp.watch("./templates/**/*.hbs").on('change', reloadTemplatesHBS);
// Watch LESS files
gulp.watch(['./less/**/*.less', './less/*.less'], buildLess);
};
exports.default = buildLess;