mirror of https://github.com/status-im/metro.git
Fix a typo in GettingStarted.md
Summary: Closes https://github.com/facebook/metro/pull/164 Differential Revision: D7706952 Pulled By: cpojer fbshipit-source-id: 397788508cb3a8202730f58f5d1a2b794ff46d14
This commit is contained in:
parent
585a0def32
commit
f16bbae30d
|
@ -157,7 +157,7 @@ If you would like to plug-in babel, you can simply do that by passing the code t
|
||||||
const {transformSync} = require('@babel/core');
|
const {transformSync} = require('@babel/core');
|
||||||
|
|
||||||
module.exports.transform = file => {
|
module.exports.transform = file => {
|
||||||
return transform(file.src, {
|
return transformSync(file.src, {
|
||||||
// Babel options...
|
// Babel options...
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue