mirror of
https://github.com/penpot/penpot.git
synced 2025-06-24 10:06:59 +02:00
♻️ Change thumbnail-renderer to rasterizer
This commit is contained in:
parent
e2812391c4
commit
51a8e8799b
9 changed files with 29 additions and 35 deletions
|
@ -132,7 +132,7 @@ function readManifest() {
|
|||
"main": "js/main.js",
|
||||
"shared": "js/shared.js",
|
||||
"worker": "js/worker.js",
|
||||
"thumbnail-renderer": "js/thumbnail-renderer.js"
|
||||
"rasterizer": "js/rasterizer.js"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -243,9 +243,9 @@ gulp.task("template:render", templatePipeline({
|
|||
output: paths.output
|
||||
}));
|
||||
|
||||
gulp.task("template:thumbnail-renderer", templatePipeline({
|
||||
name: "thumbnail-renderer.html",
|
||||
input: paths.resources + "templates/thumbnail-renderer.mustache",
|
||||
gulp.task("template:rasterizer", templatePipeline({
|
||||
name: "rasterizer.html",
|
||||
input: paths.resources + "templates/rasterizer.mustache",
|
||||
output: paths.output
|
||||
}));
|
||||
|
||||
|
@ -253,7 +253,7 @@ gulp.task("templates", gulp.series("svg:sprite:icons",
|
|||
"svg:sprite:cursors",
|
||||
"template:main",
|
||||
"template:render",
|
||||
"template:thumbnail-renderer"));
|
||||
"template:rasterizer"));
|
||||
|
||||
gulp.task("polyfills", function() {
|
||||
return gulp.src(paths.resources + "polyfills/*.js")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue