6 lines
129 B
Bash
Executable file
6 lines
129 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p yarn2nix
|
|
SOURCE=$1
|
|
WRITE_PATH=$2
|
|
|
|
yarn2nix --lockfile $1/yarn.lock > $WRITE_PATH
|