diff --git a/.github/workflows/test-browser.yml b/.github/workflows/test-browser.yml index 50818a8..69d7962 100644 --- a/.github/workflows/test-browser.yml +++ b/.github/workflows/test-browser.yml @@ -20,7 +20,7 @@ jobs: run: npm install -y - name: Start testserver - run: node tests/test-browser-server.js + run: node tests/test-browser-server.js & - name: Install Playwright Browsers run: npx playwright install --with-deps diff --git a/.npmignore b/.npmignore index 0d253ae..0dd523d 100644 --- a/.npmignore +++ b/.npmignore @@ -1,4 +1,6 @@ * !dist/* -!src/* -!CHANGELOG.md \ No newline at end of file +!src/ts/* +!README.md +!LICENSE +!package.json \ No newline at end of file diff --git a/README.md b/README.md index 22a9b93..b057569 100644 --- a/README.md +++ b/README.md @@ -48,3 +48,10 @@ library: https://stackoverflow.com/questions/16600708/how-do-you-encrypt-and-dec ### Alternatives - ASCON You may wonder if there are alternatives to AES encryption that you can use in PHP/JS. ASCON is a newer, lightweight cipher that have been selected in 2023 by the [NIST](https://csrc.nist.gov/projects/lightweight-cryptography) as the new standard for lightweight cryptography, which may suite your needs. I have created libraries for both PHP and JS which you can find at https://github.com/brainfoolong/php-ascon and https://github.com/brainfoolong/js-ascon + + +### Changelog + +#### 1.0.1 - 2024-08-14 + +Initial Public Release