We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffe4b36 commit 37ea069Copy full SHA for 37ea069
.changeset/mean-kings-jump.md
@@ -0,0 +1,5 @@
1
+---
2
+'bob-the-bundler': major
3
4
+
5
+Require `engines.node` entry with `bob check` command.
src/commands/check.ts
@@ -327,7 +327,6 @@ async function checkEngines(args: {
327
engines: unknown;
328
};
329
}) {
330
- console.log(args.packageJSON);
331
const engines = EnginesModel.safeParse(args.packageJSON.engines);
332
if (engines.success === false || engines.data['node'] === undefined) {
333
throw new Error('Please specify the node engine version in your package.json.');
0 commit comments