11 Commits

Author SHA1 Message Date
72a31ab3e2 update deps 2024-03-19 13:52:14 +01:00
629e3af60d pipeline 2024-02-09 14:44:04 +01:00
bfc4ca3c48 pipeline 2024-02-09 14:41:19 +01:00
0798993f84 install browsers 2024-02-09 14:34:53 +01:00
bac19fa91d update deps 2024-02-09 14:32:04 +01:00
dependabot[bot]
6bbc5979ae Bump follow-redirects from 1.15.2 to 1.15.4 (#5)
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.2 to 1.15.4.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.2...v1.15.4)

---
updated-dependencies:
- dependency-name: follow-redirects
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-09 14:24:59 +01:00
dependabot[bot]
be04f9c546 Bump socket.io-parser from 4.2.2 to 4.2.4 (#4)
Bumps [socket.io-parser](https://github.com/socketio/socket.io-parser) from 4.2.2 to 4.2.4.
- [Release notes](https://github.com/socketio/socket.io-parser/releases)
- [Changelog](https://github.com/socketio/socket.io-parser/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io-parser/compare/4.2.2...4.2.4)

---
updated-dependencies:
- dependency-name: socket.io-parser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-21 10:48:06 +01:00
f4503bbf2b changelog 2023-05-16 10:30:28 +02:00
69c444a204 2.0.2 2023-05-16 10:30:12 +02:00
ffc6e62f7c update deps 2023-05-16 10:28:44 +02:00
dcfd25c823 update deps 2023-04-27 22:30:22 +02:00
6 changed files with 614 additions and 339 deletions

View File

@@ -16,18 +16,18 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Install Playwright
- name: Install Playwright Dependencies
run: pnpm exec playwright install-deps
- name: Install Playwright Browsers
run: pnpm exec playwright install
- name: Run tests
run: pnpm run test

View File

@@ -17,16 +17,16 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version-file: .nvmrc
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install
- name: Install Playwright
- name: Install Playwright Dependencies
run: pnpm exec playwright install-deps
- name: Install Playwright Browsers
run: pnpm exec playwright install
- name: Run tests
run: pnpm run test

1
.nvmrc Normal file
View File

@@ -0,0 +1 @@
v20

View File

@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.0.4]
### Changed
- Updated dependencies.
## [2.0.3]
### Changed
- Updated dependencies.
## [2.0.2]
### Changed
- Updated dependencies.
## [2.0.1]
### Changed

View File

@@ -1,7 +1,6 @@
{
"name": "occulto",
"version": "2.0.1",
"license": "MIT",
"version": "2.0.4",
"description": "crypt utility",
"keywords": [
"isomorphic",
@@ -9,20 +8,24 @@
"aes",
"rsa"
],
"engines": {
"node": ">=16",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=8"
"repository": {
"type": "git",
"url": "https://github.com/cupcakearmy/occulto"
},
"license": "MIT",
"author": {
"name": "Niccolo Borgioli",
"email": "opensource@nicco.io",
"url": "https://nicco.io"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
@@ -41,23 +44,21 @@
},
"devDependencies": {
"@endyjasmi/karma-playwright-launcher": "^0.0.4",
"@types/node": "^16.18.24",
"chai": "^4.3.7",
"karma": "^6.4.2",
"@types/node": "^20.11.30",
"chai": "^4.4.1",
"karma": "^6.4.3",
"karma-mocha": "^2.0.1",
"mocha": "^10.2.0",
"mocha": "^10.3.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.32.3",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
"playwright": "^1.42.1",
"typedoc": "^0.25.12",
"typescript": "^5.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/cupcakearmy/occulto"
},
"author": {
"name": "Niccolo Borgioli",
"email": "opensource@nicco.io",
"url": "https://nicco.io"
"packageManager": "pnpm@8.15.5",
"engines": {
"node": ">=16",
"npm": "please-use-pnpm",
"pnpm": ">=8",
"yarn": "please-use-pnpm"
}
}

871
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff