Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "esm-to-cjs", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Transform ESM to Common JS for present NodeJS, without any junk wrappers or useless renaming", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -176,3 +176,3 @@ ## esm-to-cjs | ||
// gulpfile.js | ||
const esm-to-cjs = require("gulp-esm-to-cjs"); | ||
const esmToCjs = require("gulp-esm-to-cjs"); | ||
@@ -182,3 +182,3 @@ function convert() { | ||
.src(src) | ||
.pipe(esm-to-cjs(options)) | ||
.pipe(esmToCjs(options)) | ||
.pipe(gulp.dest(dest)); | ||
@@ -185,0 +185,0 @@ } |
16285