Skip to content

Commit 63de385

Browse files
committed
rebuild 2.49.0
1 parent 06de36f commit 63de385

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

dist/mixpanel.amd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ define(function () { 'use strict';
22

33
var Config = {
44
DEBUG: false,
5-
LIB_VERSION: '2.48.1'
5+
LIB_VERSION: '2.49.0'
66
};
77

88
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file

dist/mixpanel.cjs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var Config = {
44
DEBUG: false,
5-
LIB_VERSION: '2.48.1'
5+
LIB_VERSION: '2.49.0'
66
};
77

88
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file

dist/mixpanel.globals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
var Config = {
55
DEBUG: false,
6-
LIB_VERSION: '2.48.1'
6+
LIB_VERSION: '2.49.0'
77
};
88

99
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file

dist/mixpanel.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mixpanel.umd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
var Config = {
88
DEBUG: false,
9-
LIB_VERSION: '2.48.1'
9+
LIB_VERSION: '2.49.0'
1010
};
1111

1212
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file

examples/commonjs-browserify/bundle.js

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,9 @@
11
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
2-
var mixpanel = require('./mixpanel.cjs.js');
3-
4-
mixpanel.init("FAKE_TOKEN", {
5-
debug: true,
6-
loaded: function() {
7-
mixpanel.track('loaded() callback works but is unnecessary');
8-
alert("Mixpanel loaded successfully via Browserify/CommonJS");
9-
}
10-
});
11-
12-
mixpanel.track('Tracking after mixpanel.init');
13-
14-
},{"./mixpanel.cjs.js":2}],2:[function(require,module,exports){
152
'use strict';
163

174
var Config = {
185
DEBUG: false,
19-
LIB_VERSION: '2.48.1'
6+
LIB_VERSION: '2.49.0'
207
};
218

229
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
@@ -6274,4 +6261,17 @@ function init_as_module() {
62746261
var mixpanel = init_as_module();
62756262

62766263
module.exports = mixpanel;
6277-
},{}]},{},[1]);
6264+
},{}],2:[function(require,module,exports){
6265+
var mixpanel = require('./mixpanel.cjs.js');
6266+
6267+
mixpanel.init("FAKE_TOKEN", {
6268+
debug: true,
6269+
loaded: function() {
6270+
mixpanel.track('loaded() callback works but is unnecessary');
6271+
alert("Mixpanel loaded successfully via Browserify/CommonJS");
6272+
}
6273+
});
6274+
6275+
mixpanel.track('Tracking after mixpanel.init');
6276+
6277+
},{"./mixpanel.cjs.js":1}]},{},[2]);

examples/es2015-babelify/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Object.defineProperty(exports, '__esModule', {
163163
});
164164
var Config = {
165165
DEBUG: false,
166-
LIB_VERSION: '2.48.1'
166+
LIB_VERSION: '2.49.0'
167167
};
168168

169169
exports['default'] = Config;

examples/umd-webpack/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
var Config = {
7171
DEBUG: false,
72-
LIB_VERSION: '2.48.1'
72+
LIB_VERSION: '2.49.0'
7373
};
7474

7575
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var Config = {
22
DEBUG: false,
3-
LIB_VERSION: '2.48.1'
3+
LIB_VERSION: '2.49.0'
44
};
55

66
export default Config;

0 commit comments

Comments
 (0)