Skip to content

Commit

Permalink
Merge pull request #1251 from rohaquinlop/issue-1249
Browse files Browse the repository at this point in the history
feat(back): #1249 deprecate makenodejsversion
  • Loading branch information
rohaquinlop authored Jan 11, 2024
2 parents a0c3e30 + 23c42ed commit 7e0fad4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions makes/utils/makeNodeJsLock/main.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
__nixpkgs__,
makeNodeJsVersion,
makeScript,
...
}:
makeScript {
entrypoint = ./entrypoint.sh;
name = "make-node-js-lock";
replace = {
__argNode18__ = makeNodeJsVersion "18";
__argNode20__ = makeNodeJsVersion "20";
__argNode21__ = makeNodeJsVersion "21";
__argNode18__ = __nixpkgs__.nodejs_18;
__argNode20__ = __nixpkgs__.nodejs_20;
__argNode21__ = __nixpkgs__.nodejs_21;
};
}

0 comments on commit 7e0fad4

Please sign in to comment.