Type-safe Router for Vue and Svelte, powered by Navigation API. Inspired by SvelteKit, Tanstack Router, Vue Router.
router vue svelte navigation-api ruta view-transition ruta-vue ruta-svelte

ci: add tangled spindle #1

merged opened by jeffydc.xyz targeting main from push-lpzksrwzunkm

-- 2.43.0

Labels

None yet.

assignee

None yet.

Participants 1
AT URI
at://did:plc:luy4t2dgwmcl5qb7tnu4dxug/sh.tangled.repo.pull/3mdfr4ab3ef22
+74
Diff #2
+1
.envrc
··· 1 + use flake
+1
.gitignore
··· 9 9 yarn.lock 10 10 dist 11 11 coverage 12 + .direnv
+13
.tangled/workflows/test.yml
··· 1 + when: 2 + - event: ['push', 'pull_request'] 3 + branch: ['main'] 4 + 5 + engine: nixery 6 + 7 + steps: 8 + - name: nix develop -c pnpm i 9 + command: nix develop -c pnpm i 10 + - name: nix develop -c pnpm t 11 + command: nix develop -c pnpm t 12 + - name: nix develop -c pnpm fmt-check 13 + command: nix develop -c pnpm fmt-check
+24
flake.lock
··· 1 + { 2 + "nodes": { 3 + "nixpkgs": { 4 + "locked": { 5 + "lastModified": 1769433173, 6 + "narHash": "sha256-XbbfHzR238bSuaXUsOj6zJnCqU2C2xeHcZYKlfwxCso=", 7 + "rev": "13b0f9e6ac78abbbb736c635d87845c4f4bee51b", 8 + "type": "tarball", 9 + "url": "https://releases.nixos.org/nixpkgs/nixpkgs-26.05pre934966.13b0f9e6ac78/nixexprs.tar.xz" 10 + }, 11 + "original": { 12 + "type": "tarball", 13 + "url": "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz" 14 + } 15 + }, 16 + "root": { 17 + "inputs": { 18 + "nixpkgs": "nixpkgs" 19 + } 20 + } 21 + }, 22 + "root": "root", 23 + "version": 7 24 + }
+35
flake.nix
··· 1 + { 2 + description = "ruta"; 3 + 4 + inputs.nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz"; 5 + 6 + outputs = 7 + { self, nixpkgs, ... }: 8 + let 9 + forAllSystems = nixpkgs.lib.genAttrs [ 10 + "x86_64-linux" 11 + "aarch64-linux" 12 + "x86_64-darwin" 13 + "aarch64-darwin" 14 + ]; 15 + in 16 + { 17 + formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.nixfmt-tree); 18 + 19 + devShells = forAllSystems ( 20 + system: 21 + let 22 + pkgs = import nixpkgs { inherit system; }; 23 + in 24 + { 25 + default = pkgs.mkShellNoCC { 26 + name = "ruta"; 27 + packages = with pkgs; [ 28 + pnpm 29 + nodejs_24 30 + ]; 31 + }; 32 + } 33 + ); 34 + }; 35 + }

History

3 rounds 0 comments
sign up or login to add to the discussion
1 commit
expand
ci: add tangled spindle
1/1 success
expand
expand 0 comments
pull request successfully merged
1 commit
expand
ci: add tangled spindle
1/1 success
expand
expand 0 comments
1 commit
expand
ci: add tangled spindle
expand 0 comments