Commit 75ab0686 authored by NGPixel's avatar NGPixel

Fix paths for Requarks-Core production

parent 774f0525
......@@ -6,7 +6,8 @@
global.PROCNAME = 'AGENT';
global.ROOTPATH = __dirname;
global.CORE_PATH = ROOTPATH + '/../core/';
global.CORE_PATH = ROOTPATH + './node_modules/requarks-core/';
//global.CORE_PATH = ROOTPATH + '/../core/';
global.IS_DEBUG = process.env.NODE_ENV === 'development';
// ----------------------------------------
......
......@@ -57,8 +57,8 @@ var paths = {
'./client/scss/*.scss'
],
includes: [
'../core',
//'./node_modules/requarks-core'
//'../core',
'./node_modules/requarks-core'
],
watch: [
'./client/scss/**/*.scss',
......@@ -68,8 +68,8 @@ var paths = {
fonts: [
'./node_modules/font-awesome/fonts/*-webfont.*',
'!./node_modules/font-awesome/fonts/*-webfont.svg',
//'../node_modules/requarks-core/core-client/fonts/**/*'
'../core/core-client/fonts/**/*'
'../node_modules/requarks-core/core-client/fonts/**/*'
//'../core/core-client/fonts/**/*'
],
deploy: [
'./**/*',
......
......@@ -7,7 +7,8 @@
global.PROCNAME = 'SERVER';
global.ROOTPATH = __dirname;
global.CORE_PATH = ROOTPATH + '/../core/';
global.CORE_PATH = ROOTPATH + './node_modules/requarks-core/';
//global.CORE_PATH = ROOTPATH + '/../core/';
global.IS_DEBUG = process.env.NODE_ENV === 'development';
// ----------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment