From fc4645c661dd3ff1ec746b3987497e5edd80846d Mon Sep 17 00:00:00 2001 From: Gustav Nikolaj Olsen Date: Fri, 1 Feb 2019 15:58:49 +0100 Subject: [PATCH] Fix esm example in the readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e47a05..b4cebdd 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ The node "polyfill" for es modules: [esm](https://github.com/standard-things/esm require = require("esm")(module); const wrap = require("@gustavnikolaj/async-main-wrap"); -const main = require("./esm-main"); +const main = require("./main"); wrap(main)(process.cwd(), process.argv.slice(2));