Skip to content

Commit

Permalink
Fixed naming and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
anigenero committed Mar 25, 2016
1 parent e15e50a commit 6cf7f45
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = function(grunt) {
context : __dirname,
output : {
path : 'dist/',
library : '<%= pkg.name %>',
library : 'log4js',
libraryTarget : 'umd'
}
},
Expand All @@ -77,5 +77,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-webpack');

grunt.registerTask('build', [ 'eslint', 'babel:cjs', 'webpack', 'uglify', 'mochaTest' ]);

};
4 changes: 2 additions & 2 deletions dist/log4js2.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
else if(typeof define === 'function' && define.amd)
define([], factory);
else if(typeof exports === 'object')
exports["log4js2"] = factory();
exports["log4js"] = factory();
else
root["log4js2"] = factory();
root["log4js"] = factory();
})(this, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
Expand Down
2 changes: 1 addition & 1 deletion dist/log4js2.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 6cf7f45

Please sign in to comment.