Skip to content

Commit

Permalink
hack to get building so I can merge
Browse files Browse the repository at this point in the history
  • Loading branch information
rokob committed Mar 14, 2017
1 parent 7af90fc commit bd1821d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/old-browser/bundles/rollbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function setupJSON() {
}
}

var setupCustomJSON = require('../../vendor/JSON-js/json2.js');
var setupCustomJSON = require('../../../vendor/JSON-js/json2.js');
setupCustomJSON(JSONObject);

globalnotifier.setupJSON(JSONObject);
Expand Down
8 changes: 4 additions & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var uglifyPlugin = new webpack.optimize.UglifyJsPlugin({
var snippetConfig = {
name: 'snippet',
entry: {
'rollbar.snippet': './src/bundles/rollbar.snippet.js'
'rollbar.snippet': './src/old-browser/bundles/rollbar.snippet.js'
},
output: {
path: outputPath,
Expand All @@ -39,7 +39,7 @@ var snippetConfig = {
var pluginConfig = {
name: 'plugins',
entry: {
'jquery': './src/plugins/jquery.js'
'jquery': './src/old-browser/plugins/jquery.js'
},
output: {
path: outputPath + '/plugins/',
Expand Down Expand Up @@ -100,7 +100,7 @@ var vanillaConfigBase = {
configFile: path.resolve(__dirname, ".eslintrc")
},
entry: {
'rollbar': './src/bundles/rollbar.js'
'rollbar': './src/old-browser/bundles/rollbar.js'
},
output: {
path: outputPath
Expand All @@ -124,7 +124,7 @@ var UMDConfigBase = {
configFile: path.resolve(__dirname, ".eslintrc")
},
entry: {
'rollbar.umd': ['./src/bundles/rollbar.js']
'rollbar.umd': ['./src/old-browser/bundles/rollbar.js']
},
output: {
path: outputPath,
Expand Down

0 comments on commit bd1821d

Please sign in to comment.