fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1#!/usr/bin/env bash
2set -eu -o pipefail
3cd "$( dirname "${BASH_SOURCE[0]}" )"
4rm -f ./node-env.nix
5src="$(nix-build --expr '(import ../../../.. {}).fetchFromGitHub (lib.importJSON ./netlify-cli.json)')"
6echo $src
7node2nix \
8 --input $src/package.json \
9 --lock $src/npm-shrinkwrap.json \
10 --output node-packages.nix \
11 --composition composition.nix \
12 --node-env node-env.nix \
13 --nodejs-14 \
14 ;