Collection rule pages
This commit is contained in:
parent
d345bc2595
commit
38d9d74db4
35 changed files with 766 additions and 14 deletions
|
|
@ -10,6 +10,13 @@ const STATIC_SUFFIX = 'dist/css/';
|
|||
|
||||
export const ACCOUNTS_DIR = path.join(PROJECT_DIR, 'accounts', 'static', 'accounts');
|
||||
export const CORE_DIR = path.join(PROJECT_DIR, 'news', 'core', 'static', 'core');
|
||||
export const COLLECTION_DIR = path.join(
|
||||
PROJECT_DIR,
|
||||
'news',
|
||||
'collection',
|
||||
'static',
|
||||
'collection'
|
||||
);
|
||||
|
||||
const taskMappings = [
|
||||
{ name: 'login', destDir: `${ACCOUNTS_DIR}/${STATIC_SUFFIX}` },
|
||||
|
|
@ -19,6 +26,8 @@ const taskMappings = [
|
|||
{ name: 'homepage', destDir: `${CORE_DIR}/${STATIC_SUFFIX}` },
|
||||
{ name: 'categories', destDir: `${CORE_DIR}/${STATIC_SUFFIX}` },
|
||||
{ name: 'category', destDir: `${CORE_DIR}/${STATIC_SUFFIX}` },
|
||||
{ name: 'rules', destDir: `${COLLECTION_DIR}/${STATIC_SUFFIX}` },
|
||||
{ name: 'rule', destDir: `${COLLECTION_DIR}/${STATIC_SUFFIX}` },
|
||||
];
|
||||
|
||||
export const sassTask = done => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue