Final updates to the new template and codebase

This commit is contained in:
Angelos Chalaris
2019-08-19 17:59:08 +03:00
parent 6281883952
commit 136281b8c5
4 changed files with 9 additions and 7 deletions

View File

@ -9,10 +9,11 @@ const fs = require('fs-extra'),
const childProcess = require('child_process');
const { green, yellow, red } = require('kleur');
const util = require('./util');
const config = require('../config');
// Declare paths
const SNIPPETS_PATH = './snippets';
const SNIPPETS_ARCHIVE_PATH = './snippets_archive';
const TEST_PATH = './test';
const SNIPPETS_PATH = `./${config.snippetPath}`;
const SNIPPETS_ARCHIVE_PATH = `./${config.snippetArchivePath}`;
const TEST_PATH = `./${config.testPath}`;
console.time('Tester');
try {