|
%!s(int64=2) %!d(string=hai) anos | |
---|---|---|
.. | ||
babel | %!s(int64=2) %!d(string=hai) anos | |
gulp | %!s(int64=2) %!d(string=hai) anos | |
jest | %!s(int64=2) %!d(string=hai) anos | |
node | %!s(int64=2) %!d(string=hai) anos | |
node_modules | %!s(int64=2) %!d(string=hai) anos | |
CHANGELOG.md | %!s(int64=2) %!d(string=hai) anos | |
LICENSE | %!s(int64=2) %!d(string=hai) anos | |
README.md | %!s(int64=2) %!d(string=hai) anos | |
package.json | %!s(int64=2) %!d(string=hai) anos | |
third-party-module-map.json | %!s(int64=2) %!d(string=hai) anos | |
yarn.lock | %!s(int64=2) %!d(string=hai) anos |
This is a collection of tools and scripts intended to be used in conjunction with fbjs
. Previously these were shipped as a part of fbjs
.
// before (fbjs@0.1.0)
var invariant = require('fbjs/lib/invariant');
var devExpression = require('fbjs/scripts/babel/dev-expression');
// after (fbjs, fbjs-scripts@0.2.0)
var invariant = require('fbjs/lib/invariant');
var devExpression = require('fbjs-scripts/babel/dev-expression');
This ensures that production code consuming fbjs
library code does not need to install script dependencies, unless you explicitly use them via the fbjs-scripts
package.