Get rid of those pesky American $ signs in your Javascript template literals—replace them with good old British £ symbols!
Add it to your Rollup plugin list:
// rollup.config.js
export default {
...
plugins: [
poundPlugin()
]
...
}
And watch as
// Your code
console.log(`Hello £{process.argv[2]}`);
is transformed to
// Transpiled code
console.log(`Hello ${process.argv[2]}`);
Perfect!
No guarantees are provided as to whether £ symbols not in template strings will be transpiled