Compare commits

..

2 Commits

Author SHA1 Message Date
86f19de7d8 4.0.5 2023-06-25 00:59:37 +02:00
1b6b45f15f fix(core): update 2023-06-25 00:59:36 +02:00
4 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartscaf",
"version": "4.0.4",
"version": "4.0.5",
"private": false,
"description": "scaffold projects quickly",
"main": "dist_ts/index.js",

View File

@ -0,0 +1,3 @@
# this is a wow
# this is a here
# this is a undefined variable

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smartscaf',
version: '4.0.4',
version: '4.0.5',
description: 'scaffold projects quickly'
}

View File

@ -151,7 +151,7 @@ export class ScafTemplate {
smartfile.updateFileName(parsedTemplate.data.fileName);
}
smartfile.contents = Buffer.from(parsedTemplate.content);
smartfile.contents = Buffer.from(await plugins.smarthbs.postprocess(parsedTemplate.content));
smartfileArrayToWrite.push(smartfile);
}