Skip to content

Commit

Permalink
change umd lib name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvictoor committed Dec 17, 2016
1 parent 4633b3f commit 58d714a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webpack.config.js
Expand Up @@ -2,15 +2,15 @@ var webpack = require('webpack'),
path = require('path'),
yargs = require('yargs');

var libraryName = 'hdrhistogram',
var libraryName = 'hdr',
plugins = [],
outputFile;

if (yargs.argv.p) {
plugins.push(new webpack.optimize.UglifyJsPlugin({ minimize: true }));
outputFile = libraryName + '.min.js';
outputFile = 'hdrhistogram.min.js';
} else {
outputFile = libraryName + '.js';
outputFile = 'hdrhistogram.js';
}

var config = {
Expand Down

0 comments on commit 58d714a

Please sign in to comment.