Iteam cleanup + less migration

This commit is contained in:
2026-03-07 19:18:03 +01:00
parent 97cd50ed12
commit c6f7a9e966
60 changed files with 1633 additions and 851 deletions

22
gulpfile.js Normal file
View File

@@ -0,0 +1,22 @@
const gulp = require('gulp')
const less = require('gulp-less')
const postcss = require('gulp-postcss')
const autoprefixer = require('autoprefixer')
const LESS_SRC = './less/fvtt-oath-hammer.less'
const CSS_DEST = './css'
function buildCss() {
return gulp.src(LESS_SRC)
.pipe(less())
.pipe(postcss([autoprefixer]))
.pipe(gulp.dest(CSS_DEST))
}
function watchCss() {
gulp.watch('./less/**/*.less', buildCss)
}
gulp.task('css', buildCss)
gulp.task('watch', watchCss)
gulp.task('default', buildCss)