Take index.js out of the bundle

This commit is contained in:
Boris Kubiak 2018-01-02 19:54:46 +01:00
parent 29e487dcd9
commit 5cd997f6ec
5 changed files with 8 additions and 8 deletions

View file

@ -6,7 +6,7 @@ Just type [`git.io/veth`](https://git.io/veth) to use it ⚡️
## Local usage
If for any reason you don't want to use the version hosted by Gihub pages, clone the repo and open `index.html` with your web browser
If for any reason you don't want to use the version hosted by Github pages, download / clone the project and open `index.html` with your web browser
## Local development

View file

@ -12,7 +12,7 @@ const cleanCSS = require('gulp-clean-css');
// Browserify
gulp.task('browserify', cb => {
pump([
browserify('js/index.js').bundle(),
browserify('js/vanity.js', {standalone: 'vanity'}).bundle(),
source('bundle.js'),
gulp.dest('js')
], cb);
@ -56,6 +56,6 @@ gulp.task('default', ['build-js', 'build-css']);
// Watch changes and compile on the fly
gulp.task('watch', () => {
gulp.watch(['js/index.js', 'js/vanity.js'], ['browserify']);
gulp.watch(['js/vanity.js'], ['browserify']);
gulp.watch(['css/stylesheet.sass'], ['sass']);
});

View file

@ -28,7 +28,7 @@
<div class="panel">
<h4>Usage</h4>
<p class="description">
Vanity-ETH is a browser-based tool to generate an vanity Ethereum address.<br>
Vanity-ETH is a browser-based tool to generate vanity Ethereum addresses.<br>
Enter the prefix of your choice below, then click 'generate' to start.<br>
Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters
from A to F.
@ -97,5 +97,6 @@
<!--JS-->
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>-->
<script src="js/bundle.js" type="text/javascript"></script>
<script src="js/index.js" type="text/javascript"></script>
</body>
</html>

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,5 @@
/* eslint-env node, browser */
const vanity = require('./vanity');
/* eslint-env browser */
/* global vanity:false */
let count = 0;
let stop = false;