feat: add svelte
the functionality for a svelte package isn't here yet though :(
This commit is contained in:
parent
fd45c8b11a
commit
9e65814ef1
22 changed files with 4285 additions and 0 deletions
12
templates/svelte/flake/derivation.nix
Normal file
12
templates/svelte/flake/derivation.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ mkYarnPackage }:
|
||||
let
|
||||
pname = "svelte-example";
|
||||
version = "0.1.0";
|
||||
in
|
||||
mkYarnPackage {
|
||||
inherit pname version;
|
||||
src = ../.;
|
||||
yarnLock = ../yarn.lock;
|
||||
yarnNix = ../yarn.nix;
|
||||
packageJSON = ../package.json;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue