fix(v1/nodejs): bug in path concatenation

This commit is contained in:
DavHau 2023-06-05 19:38:51 +03:00
parent adf43d2708
commit 411c79097f

View File

@ -19,7 +19,7 @@ in {
description = ''
The package.json file to use.
'';
default = cfg.source + /package.json;
default = cfg.source + "/package.json";
};
packageJson = {
type = t.attrs;
@ -30,7 +30,7 @@ in {
description = ''
The package.json file to use.
'';
default = cfg.source + /package-lock.json;
default = cfg.source + "/package-lock.json";
};
packageLock = {
type = t.attrs;