Add simplified watch

This commit is contained in:
Tom Raithel
2017-02-10 19:50:03 +01:00
parent 54ecb46956
commit 0673da6867
4 changed files with 47 additions and 5 deletions

View File

@@ -13,6 +13,18 @@ export const staticPath = (...pathInSrc) => (
relativePath('static-pages', ...pathInSrc)
);
export const templatesPath = (...pathInSrc) => (
relativePath('templates', ...pathInSrc)
);
export const stylesPath = (...pathInSrc) => (
relativePath('styles', ...pathInSrc)
);
export const jsPath = (...pathInSrc) => (
relativePath('js', ...pathInSrc)
);
export const distPath = (...pathInDist) => (
relativePath('dist', ...pathInDist)
);