mirror of
https://github.com/cupcakearmy/occulto.git
synced 2025-09-06 02:50:41 +00:00
Compare commits
9 Commits
dcfd25c823
...
v2.0.3
Author | SHA1 | Date | |
---|---|---|---|
629e3af60d | |||
bfc4ca3c48 | |||
0798993f84 | |||
bac19fa91d | |||
|
6bbc5979ae | ||
|
be04f9c546 | ||
f4503bbf2b | |||
69c444a204 | |||
ffc6e62f7c |
8
.github/workflows/release.yaml
vendored
8
.github/workflows/release.yaml
vendored
@@ -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
|
||||
|
||||
|
8
.github/workflows/test.yaml
vendored
8
.github/workflows/test.yaml
vendored
@@ -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
|
||||
|
@@ -5,6 +5,12 @@ 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.2]
|
||||
|
||||
### Changed
|
||||
|
||||
- Updated dependencies.
|
||||
|
||||
## [2.0.1]
|
||||
|
||||
### Changed
|
||||
|
45
package.json
45
package.json
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"name": "occulto",
|
||||
"version": "2.0.1",
|
||||
"license": "MIT",
|
||||
"version": "2.0.3",
|
||||
"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.25",
|
||||
"chai": "^4.3.7",
|
||||
"@types/node": "^20.11.17",
|
||||
"chai": "^4.4.1",
|
||||
"karma": "^6.4.2",
|
||||
"karma-mocha": "^2.0.1",
|
||||
"mocha": "^10.2.0",
|
||||
"mocha": "^10.3.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"playwright": "^1.33.0",
|
||||
"typedoc": "^0.24.6",
|
||||
"typescript": "^5.0.4"
|
||||
"playwright": "^1.41.2",
|
||||
"typedoc": "^0.25.7",
|
||||
"typescript": "^5.3.3"
|
||||
},
|
||||
"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.1",
|
||||
"engines": {
|
||||
"node": ">=16",
|
||||
"npm": "please-use-pnpm",
|
||||
"pnpm": ">=8",
|
||||
"yarn": "please-use-pnpm"
|
||||
}
|
||||
}
|
||||
|
690
pnpm-lock.yaml
generated
690
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user