mirror of
https://github.com/penpot/penpot.git
synced 2025-05-09 22:56:38 +02:00
refactor: replace lein with cli tools and update some deps
- also removes docker files from source directories - minor assets reorganization on back (make it more production ready)
This commit is contained in:
parent
8a5c1498e9
commit
3b648f5aa5
86 changed files with 6831 additions and 1143 deletions
|
@ -26,6 +26,10 @@ gulp.task("clean", function(next) {
|
|||
});
|
||||
});
|
||||
|
||||
gulp.task("dist:clean", function(next) {
|
||||
rimraf(paths.dist, next);
|
||||
});
|
||||
|
||||
function makeAutoprefixer() {
|
||||
return autoprefixer('last 2 version',
|
||||
'safari 5',
|
||||
|
@ -185,12 +189,9 @@ gulp.task("dist:gzip", function() {
|
|||
|
||||
// Entry Point
|
||||
|
||||
gulp.task("dist", gulp.series(
|
||||
gulp.task("dist:clean"),
|
||||
gulp.parallel(
|
||||
gulp.task("dist:template"),
|
||||
gulp.task("dist:scss"),
|
||||
gulp.task("dist:copy")
|
||||
)
|
||||
gulp.task("dist", gulp.parallel(
|
||||
gulp.task("dist:template"),
|
||||
gulp.task("dist:scss"),
|
||||
gulp.task("dist:copy")
|
||||
));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue