Skip to content

Commit

Permalink
#2101 finish fix for npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Apr 13, 2015
1 parent 13303c0 commit 2df4e82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tasks/config/project/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ module.exports = {
siteVariable: /@siteFolder .*\'(.*)/mg
},

// source paths (relative to tasks/install.js )
// source paths (when installing)
source: {
config : './semantic.json.example',
definitions : './src/definitions',
Expand All @@ -239,6 +239,7 @@ module.exports = {
themeConfig : './src/theme.config.example',
themeImport : './src/theme.less',
themes : './src/themes',
defaultTheme : './src/themes/default',
userGulpFile : './tasks/config/npm/gulpfile.js'
},

Expand Down
4 changes: 2 additions & 2 deletions tasks/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ module.exports = function () {

console.clear();

/* Test NPM
/* Test NPM install
manager = {
name : 'NPM',
root : path.normalize(__dirname + '/../')
Expand Down Expand Up @@ -311,7 +311,7 @@ module.exports = function () {
else {
console.info('Creating site theme folder', installPaths.site);
}
wrench.copyDirSyncRecursive(source.site, installPaths.site, settings.wrench.site);
wrench.copyDirSyncRecursive(source.site, installPaths.site, settings.wrench.merge);

/*--------------
Theme Config
Expand Down

0 comments on commit 2df4e82

Please sign in to comment.