Skip to content

Instantly share code, notes, and snippets.

@lpaulger
Created April 18, 2016 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lpaulger/5c26226b1ba1c49822b6b04f406bbb0d to your computer and use it in GitHub Desktop.
Save lpaulger/5c26226b1ba1c49822b6b04f406bbb0d to your computer and use it in GitHub Desktop.
grunt uglify build configuration
module.exports = {
options: {
...
},
build: {
files: {
'dist/MyCompanyModules.js': [
...,
'node_modules/MyModule/build/MyModule.js'
...
],
'dist/app.js': [
...
]
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment