0e296d5fcd
- Remove nodejs-6_x - Set nodejs / nodejs-slim to nodejs-8_x / nodejs-slim-8_x - Re-generate node2nix generated files using nodejs-8_x instead
9 lines
290 B
Bash
Executable File
9 lines
290 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p nodePackages.node2nix
|
|
|
|
set -eu -o pipefail
|
|
|
|
rm -f node-env.nix
|
|
node2nix -8 -i node-packages-v8.json -o node-packages-v8.nix -c composition-v8.nix
|
|
node2nix --nodejs-10 -i node-packages-v10.json -o node-packages-v10.nix -c composition-v10.nix
|