fix(core): update

This commit is contained in:
Philipp Kunz 2023-03-06 18:45:20 +01:00
parent 78d4df7082
commit 31bf5f7486
4 changed files with 4397 additions and 14184 deletions

14180
package-lock.json generated

File diff suppressed because it is too large Load Diff

4393
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

View File

@ -6,8 +6,8 @@ import * as path from 'path';
const dirname = smartpath.get.dirnameFromImportMetaUrl(import.meta.url);
let testHbsDir = path.join(dirname, 'hbs_testfiles');
let testPartialDir = path.join(testHbsDir, 'partials');
let hbs_testfilesDir = path.join(dirname, 'hbs_testfiles');
let testPartialDir = path.join(hbs_testfilesDir, 'partials');
let testResultDir = path.join(dirname, 'testresult');
tap.test('smarthbs -> should create partials', async () => {
@ -15,7 +15,7 @@ tap.test('smarthbs -> should create partials', async () => {
});
tap.test('smarthbs -> should compile a directory', async () => {
smarthbs.compileDirectory(testHbsDir, testResultDir, 'data.json');
smarthbs.compileDirectory(hbs_testfilesDir, testResultDir, 'data.json');
});
tap.test('', async () => {

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@pushrocks/smarthbs',
version: '3.0.0',
version: '3.0.1',
description: 'handlebars with better fs support'
}