Skip to content

Commit

Permalink
[bug] fixes name in config (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
yowainwright authored Jan 11, 2019
1 parent 2c1f85d commit 55aa7b7
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build/study.dev.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/**
studyjs - A client side A/B tester
@version v5.0.1
@version v5.0.2
@link https://github.com/dollarshaveclub/study
@author Jacob Kelley <[email protected]>
@license MIT
**/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global.Postmate = factory());
(global = global || self, global.Study = factory());
}(this, function () { 'use strict';

var rand = function rand(min, max) {
Expand Down
2 changes: 1 addition & 1 deletion build/study.es.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
studyjs - A client side A/B tester
@version v5.0.1
@version v5.0.2
@link https://github.com/dollarshaveclub/study
@author Jacob Kelley <[email protected]>
@license MIT
Expand Down
4 changes: 2 additions & 2 deletions build/study.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/**
studyjs - A client side A/B tester
@version v5.0.1
@version v5.0.2
@link https://github.com/dollarshaveclub/study
@author Jacob Kelley <[email protected]>
@license MIT
**/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global.Postmate = factory());
(global = global || self, global.Study = factory());
}(this, function () { 'use strict';

var rand = function rand(min, max) {
Expand Down
4 changes: 2 additions & 2 deletions build/study.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configs/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const createConfig = ({ output, env } = {}) => {
format,
{
banner,
name: 'Postmate',
name: 'Study',
}
)
),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "studyjs",
"version": "5.0.1",
"version": "5.0.2",
"author": "Jacob Kelley <[email protected]>",
"homepage": "https://github.com/dollarshaveclub/study",
"description": "A client side A/B tester",
Expand Down

0 comments on commit 55aa7b7

Please sign in to comment.