Commit a3459d79 authored by Przemyslaw Kaminski's avatar Przemyslaw Kaminski

[nix] add repl

parent 1d9925d9
...@@ -61,6 +61,12 @@ let ...@@ -61,6 +61,12 @@ let
echo "Bundling" echo "Bundling"
yarn pulp browserify --skip-compile -t dist/bundle.js --src-path output yarn pulp browserify --skip-compile -t dist/bundle.js --src-path output
''; '';
repl = pkgs.writeShellScriptBin "repl" ''
#!/usr/bin/env bash
yarn pulp repl
'';
in in
pkgs.mkShell { pkgs.mkShell {
buildInputs = [ buildInputs = [
...@@ -71,6 +77,7 @@ pkgs.mkShell { ...@@ -71,6 +77,7 @@ pkgs.mkShell {
build-purs build-purs
build-purs-from-store build-purs-from-store
build build
repl
pkgs.yarn pkgs.yarn
]; ];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment