aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
Commit message (Collapse)AuthorAgeFilesLines
* Ensure Opera build excludes chromereload fileDan Finlay2017-11-221-1/+7
| | | | Fixes #2504
* Add lint:fix command to gulp and npm-scriptsDaijiro Wachi2017-10-221-0/+7
|
* Increase build readabilityDan Finlay2017-10-131-2/+7
|
* Merge branch 'master' into i1340-SynchronousInjectionDan Finlay2017-10-131-1/+1
|\
| * dont lint jqueryfrankiebee2017-10-051-1/+1
| |
| * add /mascara to lintingfrankiebee2017-10-051-1/+1
| |
* | Begin implementing sync injection ideaDan Finlay2017-10-051-2/+2
|/
* build - factor watcify into bundler generationkumavis2017-08-091-17/+11
|
* build - fix error swallowing on devkumavis2017-08-091-1/+16
|
* phishing detection - move phishing detection into contentscript and metamask ↵kumavis2017-08-031-1/+0
| | | | controller
* Add first version of phishing site warningDan Finlay2017-07-131-0/+1
| | | | | | | | | Links to my own blacklist for now, since I added a package.json for easy importing. We can point at the main 408H repository once this is merged: https://github.com/409H/EtherAddressLookup/pull/24 Redirects detected phishing sites [here](https://metamask.io/phishing.html).
* Simplify build variables. Remove maps from production.Kevin Serrano2017-06-271-7/+7
|
* Fix build for eth-contract-metadataDan Finlay2017-06-141-1/+1
|
* Add address image map to icon factoryDan Finlay2017-05-261-0/+10
| | | | | | | Deriving from the new address image map repository I've added here: https://github.com/MetaMask/ethereum-contract-icons With this PR, images for addresses added to that repository will be shown instead of jazzicons in MetaMask.
* build - fix disc taskkumavis2017-05-091-1/+1
|
* build - make gulp return non-zero error code on bundle failkumavis2017-04-261-2/+0
|
* Delete all code related to disclaimers.Kevin Serrano2017-02-101-7/+0
|
* gulp - fix brfs instrumentationkumavis2017-01-111-3/+0
|
* gulp - cleanup commentskumavis2017-01-111-13/+19
|
* gulp - add disc bundle analysis taskkumavis2017-01-111-5/+51
|
* gulp - clean and simplifykumavis2017-01-111-23/+15
|
* Take out unneeded permissions from the app.Kevin Serrano2017-01-041-2/+28
|
* Move tos hash logic to build phase. Create dynamic global variables based on ↵Kevin Serrano2016-10-121-0/+9
| | | | build.
* Fix boolean.Kevin Serrano2016-09-031-1/+1
|
* Changelog add and rename vars.Kevin Serrano2016-09-031-6/+6
|
* Refactor for spreading. Add conditionals for livereload.Kevin Serrano2016-09-031-6/+24
|
* Add production flag. Conditionally copy reload based on production.Kevin Serrano2016-09-021-1/+16
|
* Install deps. Fix chrome/firefox typo.Kevin Serrano2016-09-021-3/+5
|
* Add Edge build to gulp configDan Finlay2016-08-081-3/+14
|
* Fix some gulp task issuesDan Finlay2016-07-291-18/+31
| | | | | | | | | | | | I know, I've been fixing up the gulp scripts all week. I keep fixing one thing then breaking another. In this commit, I fix some issues with some previous approaches. I no longer try to do the copying to `chrome` after `firefox`, I simply stream to both during copy and build tasks, and that logic is reused during dev and build tasks. The `copyTask` function now supports an array of `destinations`, that allows piping to multiple destinations, which is pretty cool. The `manifest:cleanup` task that chrome requires is now just part of the `copy` task, so we don't have to remember it everywhere we copy. So obvious it's like why only now.
* Fix dev tasks for multi browser copyingDan Finlay2016-07-291-10/+15
|
* Fix nondeterministic buildDan Finlay2016-07-281-1/+1
| | | | | | We used to be able to copy static resources while we built js, but now part of the copy task is copying firefox built files into chrome, so they need to be done in order. This could probably be optimized a bit more, but for now it builds reliably again.
* Correct typo commentDan Finlay2016-07-271-1/+1
|
* Fix copy taskDan Finlay2016-07-271-1/+0
|
* Fix chrome buildDan Finlay2016-07-271-2/+2
|
* Store versioned builds in builds folderDan Finlay2016-07-271-4/+5
|
* Add platform specific builds and zip tasks (#486)Dan Finlay2016-07-271-12/+41
| | | | | | | | | | | | | | | | | | | | | | | | * Add platform specific folders to dist folder * Remove gulp hacks * Add platform specific bundling dev and dist tasks now build into platform-specific folders within the `dist` folder. Added tasks `gulp zip` and `gulp dist`. `zip` builds the platform-specific folders into platform-specific bundles within the `dist` folder. `dist` builds and then zips all at once. * Fix chrome bundle zipping * Fix broken reference in eth warning * Fix but where web3.eth.accounts are not available in firefox. * Bump changelog
* Inject inpage script synchronouslyDan Finlay2016-07-261-0/+2
| | | | | | | | | | | | | | | | Huge thanks to the Firefox team, for their help on the issue of our long-standing inpage script race condition. http://stackoverflow.com/questions/38577656/how-can-i-make-a-firefox-add-on-contentscript-inject-and-run-a-script-before-oth The problem is that we were injecting a `script` tag and assigning its `src` attribute, which triggers an asynchronous fetch request, and does not guarantee execution order! (That was news to me!) Instead, I'm now assigning the `script` tag a `textContent` value of the script to inject, and it seems to fix the problem! There is also a Firefox-only API that could solve this whole problem in an even more elegant way, so we might want to expose a code path for that solution later on: https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Language_Bindings/Components.utils.exportFunction Allows you to expose an object from one scope to another. There was even talk of creating a polyfill for it that does virtually what we do, message passing between contexts.
* Manually lintedDan Finlay2016-06-221-3/+3
|
* Got eslint running correctlyDan Finlay2016-06-221-1/+3
|
* Began adding auto lintingDan Finlay2016-06-221-2/+22
|
* Make gulp watch images folderDan Finlay2016-06-151-1/+1
|
* ui - redesign - app header + accounts selectionkumavis2016-05-111-1/+5
|
* build - post process with dereqkumavis2016-04-211-0/+1
|
* Moved UI into repo with its own dependency stackDan Finlay2016-04-141-3/+3
|
* build - use gulp, remove gruntkumavis2016-03-121-7/+7
|
* build - add gulp build processkumavis2016-03-031-0/+131