18 lines
240 B
Nix
18 lines
240 B
Nix
{
|
|
mkShell,
|
|
bumpNpmDeps,
|
|
nodejs_latest,
|
|
typescript,
|
|
...
|
|
}:
|
|
mkShell {
|
|
packages = [
|
|
bumpNpmDeps
|
|
nodejs_latest
|
|
typescript
|
|
];
|
|
|
|
meta.description = ''
|
|
Shell that provides `bumpNpmDeps`, node and typescript.
|
|
'';
|
|
}
|