Add Login page
This commit is contained in:
parent
b1c5be61f1
commit
679414a703
34 changed files with 6545 additions and 2 deletions
22
gulpfile.babel.js
Normal file
22
gulpfile.babel.js
Normal 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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue