Skip to content

Commit

Permalink
packages order updated in gulpfile.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nivida committed Oct 22, 2019
1 parent 9e4946c commit 9fc5744
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ var getPackageDest = function(packageName) {

// Important: The following order of these packages has to be like this
var packages = [{
fileName: 'web3-utils',
expose: 'Web3Utils',
src: './packages/web3-utils/src/index.js'
}, {
fileName: 'web3-core-helpers',
expose: 'Web3Helpers',
src: './packages/web3-core-helpers/src/index.js'
}, {
fileName: 'web3-providers-ipc',
expose: 'Web3IpcProvider',
src: './packages/web3-providers-ipc/src/index.js'
Expand Down Expand Up @@ -58,14 +66,6 @@ var packages = [{
fileName: 'web3-core',
expose: 'Web3Core',
src: './packages/web3-core/src/index.js'
}, {
fileName: 'web3-core-helpers',
expose: 'Web3Helpers',
src: './packages/web3-core-helpers/src/index.js'
}, {
fileName: 'web3-utils',
expose: 'Web3Utils',
src: './packages/web3-utils/src/index.js'
}, {
fileName: 'web3-net',
expose: 'Web3Net',
Expand Down

0 comments on commit 9fc5744

Please sign in to comment.