Skip to content

Commit 803fe8e

Browse files
authored
Release: Fix the path to build.js
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
1 parent ffa305f commit 803fe8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: build/release.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import child from "node:child_process";
1212
import path from "node:path";
1313
import chalk from "chalk";
1414
import enquirer from "enquirer";
15-
import { build } from "./tasks/build";
15+
import { build } from "./tasks/build.js";
1616

1717
var releaseVersion,
1818
nextVersion,

0 commit comments

Comments
 (0)