You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/ci/pyright
Pavol Rusnak b9bbd5fcd7
chore: update dependencies
2 years ago
..
README.md ci(nix): update to pyright-1.1.204 2 years ago
default.nix chore: update dependencies 2 years ago
generate-dependencies.sh ci(nix): update to pyright-1.1.204 2 years ago
node-composition.nix ci(nix): update to pyright-1.1.204 2 years ago
node-env.nix ci(nix): update to pyright-1.1.204 2 years ago
node-packages.nix ci(nix): update to pyright-1.1.204 2 years ago
package.json ci(nix): update to pyright-1.1.204 2 years ago

README.md

Updating pyright

  1. Update the version number in package.json.

  2. Run ./generate-dependencies.sh. The script uses node2nix to resolve dependencies and save their hashes to node-packages.nix.

  3. (optional) Check that the package builds by spawning nix-shell in top-level of the repo:

    cd ../..
    nix-shell
    

    Or check that it builds with your local nixpkgs:

    nix-build -E "(import <nixpkgs> {}).callPackage ./default.nix {}"
    
  4. Commit .nix files generated in step 2 to git:

    git add package.json *.nix