7 Commits

Author SHA1 Message Date
5ce25e41c2 version bump 2022-10-18 16:20:41 +02:00
0b70c729ce no git checks in ci 2022-10-18 16:20:09 +02:00
f0a1ff8d6e use higher timeout 2022-10-18 16:14:01 +02:00
ec63b8035c only publish when tags are created 2022-10-18 16:13:54 +02:00
0c2d966059 version bump 2022-10-18 16:10:49 +02:00
88e2e58df9 release 2022-10-18 16:09:58 +02:00
56a8103582 2.0.0 (#3)
* rewrite

* testing worklflow

* sprcify version

* config stuff

* add hash as buffer

* delete docs

* use typedarray everywhere and docs

* readme

* aes

* cleanup

* rsa

* testing with playwright

* fix playwright

* readme

* docs

* update deps

* use headless

* add prepublish

* build pipeline

* move types up

* move types up

* add types legacy

* packaging

* versions bump

* cleanup

* maybe this time

* drop support for commonjs

* version bump

* cleanup
2022-10-18 15:53:43 +02:00
3 changed files with 6 additions and 4 deletions

View File

@@ -1,7 +1,9 @@
name: "Publish to NPM"
on:
release:
push:
tags:
- "v*"
jobs:
build:
@@ -30,6 +32,6 @@ jobs:
run: pnpm run test
- name: Release
run: pnpm publish
run: pnpm publish --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@@ -1,6 +1,6 @@
{
"name": "occulto",
"version": "2.0.0-rc.7",
"version": "2.0.0-rc.9",
"license": "MIT",
"description": "crypt utility",
"keywords": [

View File

@@ -4,7 +4,7 @@ import { Precomputed } from './values.js'
describe('RSA', () => {
describe('Generate keys', function () {
this.timeout(5_000)
this.timeout(10_000)
it('Should be able to generate a keypair', async () => {
await RSA.generateKeyPair()