Skip to content

Commit

Permalink
rebuild 2.52.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tdumitrescu committed Jun 7, 2024
1 parent 95273d3 commit 2183d9a
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion dist/mixpanel-recorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -4479,7 +4479,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.51.0'
LIB_VERSION: '2.52.0'
};

/* eslint camelcase: "off", eqeqeq: "off" */
Expand Down
2 changes: 1 addition & 1 deletion dist/mixpanel-recorder.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mixpanel.amd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ define((function () { 'use strict';

var Config = {
DEBUG: false,
LIB_VERSION: '2.51.0'
LIB_VERSION: '2.52.0'
};

/* eslint camelcase: "off", eqeqeq: "off" */
Expand Down
2 changes: 1 addition & 1 deletion dist/mixpanel.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.51.0'
LIB_VERSION: '2.52.0'
};

/* eslint camelcase: "off", eqeqeq: "off" */
Expand Down
2 changes: 1 addition & 1 deletion dist/mixpanel.globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.51.0'
LIB_VERSION: '2.52.0'
};

/* eslint camelcase: "off", eqeqeq: "off" */
Expand Down
4 changes: 2 additions & 2 deletions dist/mixpanel.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 dist/mixpanel.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.51.0'
LIB_VERSION: '2.52.0'
};

/* eslint camelcase: "off", eqeqeq: "off" */
Expand Down
30 changes: 15 additions & 15 deletions examples/commonjs-browserify/bundle.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,9 @@
(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){
var mixpanel = require('./mixpanel.cjs.js');

mixpanel.init("FAKE_TOKEN", {
debug: true,
loaded: function() {
mixpanel.track('loaded() callback works but is unnecessary');
alert("Mixpanel loaded successfully via Browserify/CommonJS");
}
});

mixpanel.track('Tracking after mixpanel.init');

},{"./mixpanel.cjs.js":2}],2:[function(require,module,exports){
'use strict';

var Config = {
DEBUG: false,
LIB_VERSION: '2.51.0'
LIB_VERSION: '2.52.0'
};

/* eslint camelcase: "off", eqeqeq: "off" */
Expand Down Expand Up @@ -6332,4 +6319,17 @@ var mixpanel = init_as_module();

module.exports = mixpanel;

},{}]},{},[1]);
},{}],2:[function(require,module,exports){
var mixpanel = require('./mixpanel.cjs.js');

mixpanel.init("FAKE_TOKEN", {
debug: true,
loaded: function() {
mixpanel.track('loaded() callback works but is unnecessary');
alert("Mixpanel loaded successfully via Browserify/CommonJS");
}
});

mixpanel.track('Tracking after mixpanel.init');

},{"./mixpanel.cjs.js":1}]},{},[2]);
2 changes: 1 addition & 1 deletion examples/es2015-babelify/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Object.defineProperty(exports, '__esModule', {
});
var Config = {
DEBUG: false,
LIB_VERSION: '2.51.0'
LIB_VERSION: '2.52.0'
};

exports['default'] = Config;
Expand Down
2 changes: 1 addition & 1 deletion examples/umd-webpack/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.51.0'
LIB_VERSION: '2.52.0'
};

/* eslint camelcase: "off", eqeqeq: "off" */
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var Config = {
DEBUG: false,
LIB_VERSION: '2.51.0'
LIB_VERSION: '2.52.0'
};

export default Config;

0 comments on commit 2183d9a

Please sign in to comment.