fixing build.js one error at a time 3
This commit is contained in:
parent
4e07b8812d
commit
c56bfc6263
2 changed files with 8 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ var log = function() {
|
|||
}
|
||||
|
||||
// From the bundle
|
||||
var copay = require('copay');
|
||||
var copay = require('../copay');
|
||||
|
||||
var copayApp = window.copayApp = angular.module('copayApp', [
|
||||
'ngRoute',
|
||||
|
|
|
|||
|
|
@ -78,6 +78,9 @@ var createBundle = function(opts) {
|
|||
b.require('./test/mocks/FakePayProServer', {
|
||||
expose: '../../mocks/FakePayProServer'
|
||||
});
|
||||
b.require('./test/mocks/FakeBuilder', {
|
||||
expose: './mocks/FakeBuilder'
|
||||
});
|
||||
b.require('./js/models/network/WebRTC', {
|
||||
expose: '../js/models/network/WebRTC'
|
||||
});
|
||||
|
|
@ -99,6 +102,10 @@ var createBundle = function(opts) {
|
|||
b.require('./config', {
|
||||
expose: '../config'
|
||||
});
|
||||
b.require('./copay');
|
||||
b.require('./copay', {
|
||||
expose: 'copay'
|
||||
});
|
||||
b.require('./copay', {
|
||||
expose: '../copay'
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue