Skip to content

Commit

Permalink
Release: Fix the path to build.js
Browse files Browse the repository at this point in the history
ES modules require extensions in import paths.

The dry run:
```
node build/release.js -d 3.5.0
```
succeeded after this fix.

Closes gh-522
  • Loading branch information
mgol authored Jul 12, 2024
1 parent ffa305f commit 803fe8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import child from "node:child_process";
import path from "node:path";
import chalk from "chalk";
import enquirer from "enquirer";
import { build } from "./tasks/build";
import { build } from "./tasks/build.js";

var releaseVersion,
nextVersion,
Expand Down

0 comments on commit 803fe8e

Please sign in to comment.