Open greenkeeper[bot] opened 6 years ago
Update to this version instead ๐
the brfs transform now generates source maps in --debug
mode.
Update to this version instead ๐
Update tests so they work with the latest Browserify.
Update to this version instead ๐
Update to static-module 3. This adds scope tracking, and keeps fs
requires around if they are still used.
Previously the below:
var fs = require('fs')
function x (fs) { return fs.readFileSync(__filename) }
x({ readFileSync: function () { return 10 } })
would compile the fs.readFileSync()
call, even though it's not actually referring to the fs
module. This may seem contrived but it can happen easily if a file was minified before being passed to brfs
, and a million different variables are all named e
.
Previously the below:
var fs = require('fs')
fs.readFileSync(someDynamicValue())
fs.readFileSync(__filename)
would compile to:
fs.readFileSync(someDynamicValue())
Buffer('...', 'base64')
But now it compiles to:
var fs = require('fs')
fs.readFileSync(someDynamicValue())
Buffer('...', 'base64')
This is primarily helpful when bundling for node or electron.
Update to this version instead ๐
input.js
file entries in source maps (#90 by @pirxpilot)devDependency
brfs was updated from 1.4.3
to 2.0.2
.
Version 1.4.4 of brfs was just published.
The version 1.4.4 is not covered by your current version range.
If you donโt accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
It might be worth looking into these changes and trying to get this project onto the latest version of brfs.
If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you donโt have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.
Commits
The new version differs by 9 commits.
5bad47b
1.4.4
fde912e
Merge pull request #85 from browserify/more-travis
a4cf67f
Merge pull request #83 from browserify/new-static-module
ab22d1b
Add new nodes to ci
a15f36a
Update static-module
a0b08e2
Merge pull request #79 from hubdotcom/patch-1
a03bd5b
Revert version
fdbc20b
Security patch
feffd3d
the test was not failing; just an issue with the test
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donโt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper bot :palm_tree: