Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added source map #40

Merged
merged 1 commit into from May 19, 2016
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

added source map

  • Loading branch information
Jayant Varshney Jayant Varshney
Jayant Varshney authored and Jayant Varshney committed May 19, 2016
commit 8a4bcc9280e49ac2d498815ccd7c951d19655676
@@ -1,14 +1,19 @@
module.exports = function(grunt) {
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
main: {
files: { 'src/loggly.tracker.min.js': ['src/loggly.tracker.js'] }
pkg : grunt.file.readJSON('package.json'),
uglify : {
options: {
sourceMap : true
},
main : {
files : {
'src/loggly.tracker.min.js' : ['src/loggly.tracker.js']
}
}
}
});

grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask('default', ['uglify'] );
grunt.registerTask('default', ['uglify']);

};
};

Some generated files are not rendered by default. Learn more.

Some generated files are not rendered by default. Learn more.

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.