mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
d1545245c2
Now properly uses brfs transform so it can reload on state object changes.
20 lines
387 B
JavaScript
20 lines
387 B
JavaScript
const beefy = require('beefy')
|
|
const http = require('http')
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
|
|
const port = 8124
|
|
|
|
const handler = beefy({
|
|
entries: {'mocker.js': 'bundle.js'}
|
|
, cwd: __dirname
|
|
, live: true
|
|
, open: true
|
|
, quiet: false
|
|
, bundlerFlags: ['-t', 'brfs']
|
|
})
|
|
|
|
|
|
http.createServer(handler).listen(port)
|
|
console.log(`Now listening on port ${port}`)
|