mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-23 18:34:45 +01:00
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
|
'use strict';
|
||
|
|
||
|
// Bootstraps yargs for ESM:
|
||
|
import esmPlatformShim from './lib/platform-shims/esm.mjs';
|
||
|
import {YargsFactory} from './build/lib/yargs-factory.js';
|
||
|
|
||
|
const Yargs = YargsFactory(esmPlatformShim);
|
||
|
export default Yargs;
|