Skip to content

Commit afd9715

Browse files
committed
Fixup Release 0.2.5
1 parent 2464fd0 commit afd9715

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export const ensurePluginDir = async (presentationRoot) => {
5454
const resolvePkgCommandExec = async() => {
5555
for (const cmd of pkgCommands) {
5656
const execPathCmd = path.join(path.dirname(process.execPath), cmd.command);
57-
if (existsSync()) {
57+
if (existsSync(execPathCmd)) {
5858
return { ...cmd, command: execPathCmd };
5959
}
6060
if (await isOnPath(cmd.command, cmd.noOpFlag)) {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "heedjs",
3-
"version": "0.2.3",
3+
"version": "0.2.5",
44
"license": "MIT",
55
"author": "Sven Johansson",
66
"type": "module",
@@ -34,7 +34,7 @@
3434
"bump:minor": "npm version minor --no-git-tag-version",
3535
"bump:major": "npm version major --no-git-tag-version",
3636
"readme:toc": "markdown-toc -i README.md",
37-
"postinstall": "playwright install",
37+
"dev:install": "playwright install",
3838
"prepublishOnly": "npm run readme:toc && npm run lint && npm run test && npm run build"
3939
},
4040
"files": [

0 commit comments

Comments
 (0)