Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

2 lat temu
3 lat temu
12345678910111213141516171819202122232425262728293031
  1. # LessPass Web Extension
  2. ## Verify the web extension
  3. The web extension is just a wrapper around lesspass-pure node module.
  4. Source file correspond to the zip downloaded on http://github.com/lesspass/lesspass/archive/${sha256}.zip.
  5. {sha256} is the git sha256 use when build was done.
  6. ## requirements
  7. To rebuild the web extension, you need node, yarn and md5sum to check the md5 sum of the files
  8. Tested with:
  9. * node version 14.16.0
  10. * yarn version 1.22.5
  11. * md5sum (GNU coreutils) version 8.32
  12. ## unzip source {sha256}.zip
  13. unzip {sha256}.zip -d /tmp
  14. cd /tmp/lesspass-{sha256}
  15. ## Reproduce lesspass.min.js and dist folder with sources
  16. cd packages/lesspass-pure
  17. yarn install
  18. yarn run build
  19. cd ../../
  20. find packages/lesspass-web-extension/extension/dist/ -type f -exec md5sum {} \;
  21. find packages/lesspass-pure/dist -type f -exec md5sum {} \;