Take index.js out of the bundle
This commit is contained in:
parent
29e487dcd9
commit
5cd997f6ec
5 changed files with 8 additions and 8 deletions
|
@ -6,7 +6,7 @@ Just type [`git.io/veth`](https://git.io/veth) to use it ⚡️
|
||||||
|
|
||||||
## Local usage
|
## 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
|
## Local development
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ const cleanCSS = require('gulp-clean-css');
|
||||||
// Browserify
|
// Browserify
|
||||||
gulp.task('browserify', cb => {
|
gulp.task('browserify', cb => {
|
||||||
pump([
|
pump([
|
||||||
browserify('js/index.js').bundle(),
|
browserify('js/vanity.js', {standalone: 'vanity'}).bundle(),
|
||||||
source('bundle.js'),
|
source('bundle.js'),
|
||||||
gulp.dest('js')
|
gulp.dest('js')
|
||||||
], cb);
|
], cb);
|
||||||
|
@ -56,6 +56,6 @@ gulp.task('default', ['build-js', 'build-css']);
|
||||||
|
|
||||||
// Watch changes and compile on the fly
|
// Watch changes and compile on the fly
|
||||||
gulp.task('watch', () => {
|
gulp.task('watch', () => {
|
||||||
gulp.watch(['js/index.js', 'js/vanity.js'], ['browserify']);
|
gulp.watch(['js/vanity.js'], ['browserify']);
|
||||||
gulp.watch(['css/stylesheet.sass'], ['sass']);
|
gulp.watch(['css/stylesheet.sass'], ['sass']);
|
||||||
});
|
});
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
<div class="panel">
|
<div class="panel">
|
||||||
<h4>Usage</h4>
|
<h4>Usage</h4>
|
||||||
<p class="description">
|
<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>
|
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
|
Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters
|
||||||
from A to F.
|
from A to F.
|
||||||
|
@ -97,5 +97,6 @@
|
||||||
<!--JS-->
|
<!--JS-->
|
||||||
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>-->
|
<!--<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/bundle.js" type="text/javascript"></script>
|
||||||
|
<script src="js/index.js" type="text/javascript"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,5 @@
|
||||||
/* eslint-env node, browser */
|
/* eslint-env browser */
|
||||||
|
/* global vanity:false */
|
||||||
const vanity = require('./vanity');
|
|
||||||
|
|
||||||
let count = 0;
|
let count = 0;
|
||||||
let stop = false;
|
let stop = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue