Add Login page

This commit is contained in:
Sonny 2019-07-20 09:57:10 +02:00
parent b1c5be61f1
commit 679414a703
34 changed files with 6545 additions and 2 deletions

22
gulpfile.babel.js Normal file
View file

@ -0,0 +1,22 @@
import { series, watch as _watch } from 'gulp';
import path from "path";
import del from "del";
import buildSass, { ACCOUNTS_DIR } from "./gulp/sass";
const STATIC_DIR = path.join("src", "newsreader", "static");
function clean(){
return del([
`${ACCOUNTS_DIR}/accounts/dist/css/*`,
]);
};
export function watch(){
_watch(`${STATIC_DIR}/src/scss/**/*.scss`, (done) => {
series(clean, buildSass)(done);
});
};
export default series(clean, buildSass);