Add Login page
This commit is contained in:
parent
b1c5be61f1
commit
679414a703
34 changed files with 6545 additions and 2 deletions
17
gulp/sass.js
Normal file
17
gulp/sass.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { src, dest } from "gulp";
|
||||
|
||||
import concat from "gulp-concat";
|
||||
import path from "path";
|
||||
import sass from "gulp-sass";
|
||||
|
||||
const PROJECT_DIR = path.join("src", "newsreader");
|
||||
const STATIC_DIR = path.join(PROJECT_DIR, "static");
|
||||
|
||||
export const ACCOUNTS_DIR = path.join(PROJECT_DIR, "accounts", "static");
|
||||
|
||||
export default function accountsTask(){
|
||||
return src(`${STATIC_DIR}/src/scss/accounts/index.scss`)
|
||||
.pipe(sass().on("error", sass.logError))
|
||||
.pipe(concat("accounts.css"))
|
||||
.pipe(dest(`${ACCOUNTS_DIR}/accounts/dist/css`));
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue