Pretentious name for a tiny nodejs module that edits the last line of a file.
It basically turns export = myModule;
into export { myModule };
between tsc compilations (both ways supported)
Use it to compile into the syntax of Old (require()
, NOT require().default
) and a valid es6 module, in a single build command.
node >= 10
npm install --save-dev export-helper
npx export-helper es5 index.ts
- first argument can be either "es5" or "es6"
- second argument is target file path
- accepts an optional 'verbose' 3rd param, that enables a log:
npx export-helper es6 testFile.ts verbose
# npmjs/export-helper: "export = constant;" has successfully been replaced by "export { constant };" (testFile.ts)
Javascript file helper.js
:
const exportHelper = require("export-helper");
exportHelper({ mode: "es6", path: "testFile.ts" }).then((res) => res);
In terminal:
$ node helper.js
$ npmjs/export-helper: "export = constant;" has successfully been replaced by "export { constant };" (testFile.ts)
This function accepts an option object :
const options = {
mode: "es6", // needed. Available options: "es5", "es6". Untested options: "es5:withbrackets", "es6:default", "es6asDefault"
path: "testFile.ts", // needed. Path to file (./ is optional)
silent: false, // default to false; set to true to remove the log
linesToTrim: 1 /* default to 1.
You usually don't need this, but in case your IDE insert
an extra blank line between your module export and EOF,
incrementing that value should do the trick.
*/,
};
This script in my package.json :
{
...
"npm run build": "node rebuild.js && npx export-helper es5 src/index.ts && tsc -p tsconfig-cjs.json && px export-helper es6 src/index.ts && tsc -p tsconfig.json"
}
- rebuild.js is a simple utility that wipes the /lib folder before compilation.
tsc -p tsconfig-cjs.json
: I'm calling tsc with this config file- Now that I've compiled proper cjs with
module.exports
, I callnpx export-helper es6 src/index.ts
to change the source code once more. - Finally I call tsc to build the es6 module.