Fix paths for Requarks-Core production
This commit is contained in:
parent
774f0525e6
commit
75ab068672
3
agent.js
3
agent.js
@ -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';
|
||||
|
||||
// ----------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user