Releases: plopjs/plop
v3.0.4
What's Changed
Full Changelog: v3.0.3...v3.0.4
v3.0.3
What's Changed
- Resolve extension of main field by @ThibodeauJF in #301
New Contributors
- @ThibodeauJF made their first contribution in #301
Full Changelog: v3.0.2...v3.0.3
v3.0.2
v3.0.1
- Fixes
run
typing to be a promise, as was updated in Plop 3
v3.0.0 🎉
The first major release of plop
since 2018 is here!
We've got a massive feature in this release: ESM Support. Read further to find out more!
Breaking Changes
- Node 8 and 10 support has been dropped
- Node 12 and 14 must be match
^12.20.0
and^14.13.1
respectively
- Node 12 and 14 must be match
Wrapper CLI Breaking Changes
This section doesn't apply to users of the
plop
CLI command, only those that are usingplop
as a library in their own generator tool.
- Plop wrapper CLIs must be ESM to import
plop
(see below to learn more) - Liftoff has been upgraded from 1 to 4 and as a result, the
Plop
object API has changed. Instead of:
Plop.launch({
cwd: argv.cwd,
configPath: path.join(__dirname, 'plopfile.js'),
require: argv.require,
completion: argv.completion
}, env => run(env, undefined, true));
You need to do:
import { dirname } from "node:path";
import { fileURLToPath } from "node:url";
const __dirname = dirname(fileURLToPath(import.meta.url));
Plop.prepare({
cwd: argv.cwd,
configPath: path.join(__dirname, 'plopfile.js'),
preload: argv.preload || [],
completion: argv.completion
}, env => Plop.execute(env, run));
Features
ESM Support
The major feature of this release is support for ESM modules (#260)
This means that instead of:
module.exports = (plop) => {
// ...
}
You can now have the following code in your plopfile:
export default (plop) => {
// ...
}
Going forward, plopfiles must either be:
- An ESM
.mjs
file withtype: "module"
inpackage.json
- An ESM
.js
file withtype: "module"
inpackage.json
- A CommonJS
.cjs
file withtype: "module"
inpackage.json
- A CommonJS
.js
file withtype: "commonjs"
inpackage.json
Any of these file extensions will be recognized and accepted with the default plopfile
name, just like before.
If you want to learn more about ESM usage in a library, here's some further reading provided by Sindre Sorhus.
These limitations will also be present for plop wrapper CLIs, so it's encouraged to read the above if you're doing so.
Async Plopfunctions
While previously a plopfile.js
had to be a synchronous export - we now allow you to make an async function. We handle the rest!
export default async (plop) => {
// ...
}
Bug Fixes
- TypeScript usage should be more consistent and less buggy: plopjs/node-plop#194
- Prompt validators can now be async: plopjs/node-plop#182
- Vulnerabilities present in the 2.x release have now been fixed. Unfortunately, we cannot backport this behavior.
Internal Changes
The plop CLI itself now has a solid end-to-end tests. While this isn't done, it is very functional today. These tests have enabled us to be confident that this release should work for 99% of users without having to change much if anything at all on their end.
We even wrote our own testing library to support this
Admittedly, we have a low coverage rate, but are testing against most of the big stuff today. We welcome and encourage pull requests adding more tests to increase that rate.
We've also added CI to run those end-to-end tests against every PR against the main branch.
Looking Ahead
While this release is fun, there's more that we want to do internally sometime in the near future.
Namely:
- Simplify
node-plop
tests - Migrate
node-plop
to usejest
instead ofava
- Move
node-plop
to monorepo in theplop
repo - Add commit hooks and autogenerated changelog to
node-plop
andplop
- Rename branches from
master
tomain
- Add TS example tests to
plop
v2.7.6
What's Changed
- fixed plop not running in macos/linux
- feat: return plop from run function by @trickstival in #262
New Contributors
- @trickstival made their first contribution in #262
Full Changelog: v2.7.5...v2.7.6
v2.7.5
What's Changed
- Fixes for Issue #194 by @davidmwhynot in plopjs/node-plop#196
- Include string in action type union by @tuliren in plopjs/node-plop#191
- Inquirer function params by @RobinKnipe in plopjs/node-plop#190
- feat: Prompt Bypass supports Object choice values by @knikolov-nuvolo in plopjs/node-plop#209
- Fix load method params type definition by @Wander95 in plopjs/node-plop#205
New Contributors
- @FDiskas made their first contribution in #235
- @forivall made their first contribution in #271
- @kwoncharles made their first contribution in #283
Full Changelog: v2.7.4...v2.7.5
v2.7.4
- Fix various typing issues
v2.7.3
v.2.7.2
- Fix typescript typing errors