Skip to content

Commit

Permalink
moves all dependencies into the website portion of the codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
dtracers committed Jun 2, 2016
1 parent 7f739b3 commit aa27d64
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,18 +136,17 @@ module.exports = function(grunt) {
{
// copies the website files used in production for prod use
expand: true,
src: [ 'src/main/js/**', '!src/test/**',

// we do not want these copied as they are not meant for production.
'!src/**/debug/**' ],
dest: 'target/website/'
src: [ '**' ],
dest: 'target/website/',
cwd: 'src/main/js'
},
{
// copies the bower components to target
expand: true,
src: [ 'bower_components/protobufjs/**', 'bower_components/bytebuffer/**', 'bower_components/long/**' ],
dest: 'target/website/'
},
src: [ '**/*.js' ],
dest: 'target/website/',
cwd: 'bower_components'
}
]
},
/**
Expand Down

0 comments on commit aa27d64

Please sign in to comment.