Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
NoamaExl committed Oct 9, 2016
1 parent 0e6c942 commit 60e6339
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions gulp/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ function mainPath() {
function customCssMainPath() {
return viewCssDir()+'/*.css';
}

function customColorsPath(){
return `colors.json`;
}
function viewCssDir() {
return `primo-explore/custom/${view}/css`;
}
Expand All @@ -42,9 +44,20 @@ function customCssPath() {
}


function customNpmJsCustomPath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/js/custom.js`;
}

function customNpmJsModulePath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/js/custom.module.js`;
}


function customNpmJsPath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/js/*.js`;
}


function customNpmCssPath() {
return `primo-explore/custom/${view}/node_modules/primo-explore*/css/*.css`;
}
Expand All @@ -70,8 +83,11 @@ let buildParams = {
viewCssDir: viewCssDir,
customCssPath: customCssPath,
customNpmJsPath: customNpmJsPath,
customNpmJsCustomPath: customNpmJsCustomPath,
customNpmJsModulePath: customNpmJsModulePath,
customNpmCssPath: customNpmCssPath,
customCssMainPath: customCssMainPath
customCssMainPath: customCssMainPath,
customColorsPath: customColorsPath
};

module.exports = {
Expand Down

0 comments on commit 60e6339

Please sign in to comment.