2020-05-06 10:39:49 +00:00
|
|
|
{ lib, yarn2nix-moretea }:
|
2019-06-04 16:50:29 +00:00
|
|
|
|
2020-12-02 12:40:23 +00:00
|
|
|
# Create a yarn package for our project that contains all the dependecies.
|
|
|
|
yarn2nix-moretea.mkYarnModules rec {
|
|
|
|
pname = "status-react";
|
|
|
|
name = "${pname}-node-deps-${version}";
|
2020-05-06 10:39:49 +00:00
|
|
|
version = lib.fileContents ../../../VERSION;
|
2020-07-01 19:45:39 +00:00
|
|
|
yarnLock = ../../../yarn.lock;
|
|
|
|
packageJSON = ../../../package.json;
|
2020-12-02 12:40:23 +00:00
|
|
|
}
|