* Prepare @babel/core for asynchronicity * Include regenerator-runtime in standalone build * Fix rollup build
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
// @flow
|
|
|
|
import resolve from "resolve";
|
|
import gensync from "gensync";
|
|
|
|
export default gensync<[string, {| basedir: string |}], string>({
|
|
sync: resolve.sync,
|
|
errback: resolve,
|
|
});
|