Compare commits

...
55 changed files with 452 additions and 209 deletions
+198
View File
@@ -0,0 +1,198 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/api"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/components"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/desktop"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/docs"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/encryption"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/features"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/filepicker"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/files"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/icons"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/mobile"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/models"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/releases"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/responses"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/services"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/sncrypto-common"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/sncrypto-web"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/snjs"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/styles"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/toast"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/utils"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "npm"
directory: "/packages/web"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "bundler"
directory: "/packages/web-server"
schedule:
interval: "daily"
reviewers:
- "moughxyz"
- "karolsojko"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
reviewers:
- "moughxyz"
- "karolsojko"
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+7
View File
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.4.6](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [1.4.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-08)
**Note:** Version bump only for package @standardnotes/api
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/api",
"version": "1.4.5",
"version": "1.4.6",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -25,12 +25,12 @@
"test:unit": "jest spec --coverage"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"eslint-plugin-prettier": "*",
"jest": "^27.5.1",
"ts-jest": "^27.1.3"
"jest": "^28.1.2",
"ts-jest": "^28.0.5"
},
"dependencies": {
"@standardnotes/common": "^1.23.1",
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.7.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* **components:** additional output in the versioning script ([b3c8d6e](https://github.com/standardnotes/app/commit/b3c8d6e976a96417539c609e59d92877475c557e))
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [2.7.4](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-11)
### Bug Fixes
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+8 -8
View File
@@ -70,9 +70,9 @@
"binary": "b621bfd81829a205f2f02e85d446e277ad20e367b92676ec20b3ee59b1bfab3f"
},
"org.standardnotes.markdown-visual-editor": {
"version": "1.1.1",
"base64": "6182ced07fbe9281cf46c1b8818213415e6d34d360bb64883514a7179cf1d7e0",
"binary": "1a99a8ccac07678d0e2e2423b302e5e98cfb100777c37f1795b7874b2d31dcf9"
"version": "1.1.2",
"base64": "2645d31c51fa6a198c14a32737ee4045dcbbecb8bdaa1432ca4686cab78834d2",
"binary": "c4479f8768f5f6cda41850212a8e03927990adfa33ebd36e29ee6de2335e8e46"
},
"org.standardnotes.simple-task-editor": {
"version": "1.4.1",
@@ -81,8 +81,8 @@
},
"org.standardnotes.token-vault": {
"version": "2.2.2",
"base64": "08cd824ac63533eb20a2b96029cde3eff5fbb38b6019484c31f9873f5066b6a1",
"binary": "dbb73debe4ed67476677fa8ea800ad5f7dbe3c8270243a2be82f790cddaef6aa"
"base64": "cecf46bf3c959a180a96df4ea93ea30e2b7f8c88d67eef4a2f42eae58ede362b",
"binary": "db4117a732db0f1d5bccb568088b8ae82d68af1430ba8d22810bedc8ddd63f6d"
},
"org.standardnotes.standard-sheets": {
"version": "1.5.0",
@@ -90,9 +90,9 @@
"binary": "12b19b16adf7dfb6626be2deaa8fe47a242b6fb15c841d6b12a1427a1a2fbd5e"
},
"org.standardnotes.advanced-checklist": {
"version": "0.2.2",
"base64": "edadcc92b3c53ab5ca8325ae710b846dde8e19d2dc33f64e6716ef9218cfbd05",
"binary": "08e146c4c54e972c4411f367b496c5ef91feb14fd66395fb01336b907d4adf34"
"version": "0.2.3",
"base64": "2a2ce988902c9fdb7fe507c826bff13592adfe4fbe1c36e8468155730f507573",
"binary": "ae614e38946c480256157554d9af542deb0c9741630ad3242becce391991b994"
},
"org.standardnotes.file-safe": {
"version": "2.0.16",
Binary file not shown.
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/components-meta",
"version": "2.7.4",
"version": "2.7.5",
"private": true,
"author": "Standard Notes.",
"main": "dist",
+2 -2
View File
@@ -3,7 +3,7 @@
echo 'Building components from' $(pwd)
# Exit immediately after an error in any command
set -e
set -xe
yarn clean && yarn build:components
@@ -11,4 +11,4 @@ echo "Packaging component assets and zips..."
node scripts/package.mjs
git add dist
(git commit -m 'chore(release): components') || true
(git commit -m 'chore(release): components') || true
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.2.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [0.2.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-06)
### Bug Fixes
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/advanced-checklist",
"version": "0.2.2",
"version": "0.2.3",
"description": "A task editor with grouping functionality.",
"author": "Standard Notes.",
"keywords": [
@@ -94,7 +94,7 @@
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.4.1",
"@types/jest": "^28.1.5",
"@types/lodash": "4.14.179",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
@@ -120,7 +120,7 @@
"redux-mock-store": "1.5.4",
"source-map-explorer": "2.5.2",
"styled-components": "5.3.5",
"ts-jest": "27.1.4",
"ts-jest": "^28.0.5",
"typescript": "4.6.2",
"uuid": "8.3.2"
}
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.1.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
## [1.1.1](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-06-30)
**Note:** Version bump only for package @standardnotes/markdown-visual
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/markdown-visual",
"version": "1.1.1",
"version": "1.1.2",
"author": "Johnny Almonte <[email protected]>",
"description": "A lightweight WYSIWYG markdown editor for Standard Notes, derived from Milkdown.",
"keywords": [
@@ -45,7 +45,7 @@
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@types/lodash": "^4.14.179",
"@types/marked": "^4.0.2",
"@types/node": "^17.0.21",
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [3.23.73](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
**Note:** Version bump only for package @standardnotes/desktop
## [3.23.72](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-12)
**Note:** Version bump only for package @standardnotes/desktop
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/desktop",
"main": "./app/dist/index.js",
"version": "3.23.72",
"version": "3.23.73",
"license": "AGPL-3.0-or-later",
"author": "Standard Notes.",
"private": true,
+7
View File
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.13.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [1.13.4](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-08)
**Note:** Version bump only for package @standardnotes/encryption
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/encryption",
"version": "1.13.4",
"version": "1.13.5",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -25,14 +25,14 @@
},
"devDependencies": {
"@standardnotes/config": "2.4.3",
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "*",
"eslint": "*",
"eslint-plugin-prettier": "*",
"jest": "^27.5.1",
"jest": "^28.1.2",
"prettier": "*",
"ts-jest": "^27.1.3",
"ts-jest": "^28.0.5",
"typescript": "*"
},
"dependencies": {
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.50.4](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
**Note:** Version bump only for package @standardnotes/features
## [1.50.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-06)
### Bug Fixes
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/features",
"version": "1.50.3",
"version": "1.50.4",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -31,7 +31,7 @@
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/jest": "^28.1.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"eslint-plugin-prettier": "*",
"jest": "^28.1.2",
+7
View File
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.21.6](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [1.21.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-08)
**Note:** Version bump only for package @standardnotes/filepicker
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/filepicker",
"version": "1.21.5",
"version": "1.21.6",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -23,11 +23,11 @@
"test:unit": "jest"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"eslint-plugin-prettier": "*",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.5.0"
},
"dependencies": {
+7
View File
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.8.7](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [1.8.6](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-08)
**Note:** Version bump only for package @standardnotes/files
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/files",
"version": "1.8.6",
"version": "1.8.7",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -23,11 +23,11 @@
"test:unit": "jest"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"eslint-plugin-prettier": "*",
"jest": "^27.5.1",
"ts-jest": "^27.1.3"
"jest": "^28.1.2",
"ts-jest": "^28.0.5"
},
"dependencies": {
"@standardnotes/common": "^1.23.1",
+6
View File
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.4.6](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [1.4.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-06)
**Note:** Version bump only for package @standardnotes/icons
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/icons",
"version": "1.4.5",
"version": "1.4.6",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -24,7 +24,7 @@
"prettier": "*",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"ts-jest": "^28.0.3",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.0",
"typescript": "*",
"webpack": "*",
+6
View File
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [3.30.28](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
## [3.30.27](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-12)
**Note:** Version bump only for package @standardnotes/mobile
+3 -3
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/mobile",
"version": "3.30.27",
"version": "3.30.28",
"author": "Standard Notes.",
"private": true,
"license": "AGPL-3.0-or-later",
@@ -94,7 +94,7 @@
"@standardnotes/config": "^2.4.3",
"@types/detox": "^18.1.0",
"@types/faker": "^6.6.9",
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@types/js-base64": "^3.3.1",
"@types/react": "17.0.2",
"@types/react-native": "^0.67.3",
@@ -109,7 +109,7 @@
"eslint-plugin-prettier": "^4.0.0",
"faker": "^6.6.6",
"get-yarn-workspaces": "^1.0.2",
"jest": "^27.5.1",
"jest": "^28.1.2",
"jest-circus": "^27.5.1",
"metro-react-native-babel-preset": "^0.70.1",
"npm-check-updates": "*",
+7
View File
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.15.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [1.15.4](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-08)
### Bug Fixes
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/models",
"version": "1.15.4",
"version": "1.15.5",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -23,12 +23,12 @@
"test:unit": "jest"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"eslint-plugin-prettier": "*",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"typescript": "*"
},
"dependencies": {
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.2.94](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
**Note:** Version bump only for package @standardnotes/releases
## [1.2.93](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-12)
**Note:** Version bump only for package @standardnotes/releases
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/releases",
"version": "1.2.93",
"version": "1.2.94",
"license": "AGPL-3.0-or-later",
"main": "dist/releases.json",
"types": "dist/index.d.ts",
+7
View File
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.9.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [1.9.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-06)
**Note:** Version bump only for package @standardnotes/responses
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/responses",
"version": "1.9.2",
"version": "1.9.3",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -24,11 +24,11 @@
"test:unit": "jest spec --coverage --passWithNoTests"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"eslint-plugin-prettier": "*",
"jest": "^27.5.1",
"ts-jest": "^27.1.3"
"jest": "^28.1.2",
"ts-jest": "^28.0.5"
},
"dependencies": {
"@standardnotes/common": "^1.23.1",
+7
View File
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.16.5](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [1.16.4](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-08)
**Note:** Version bump only for package @standardnotes/services
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/services",
"version": "1.16.4",
"version": "1.16.5",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -32,11 +32,11 @@
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.12.1",
"eslint-plugin-prettier": "*",
"jest": "^27.5.1",
"ts-jest": "^27.1.3"
"jest": "^28.1.2",
"ts-jest": "^28.0.5"
}
}
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.124.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
**Note:** Version bump only for package @standardnotes/snjs
## [2.124.1](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-08)
**Note:** Version bump only for package @standardnotes/snjs
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/snjs",
"version": "2.124.1",
"version": "2.124.2",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -32,7 +32,7 @@
"@babel/core": "*",
"@babel/preset-env": "*",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^28.1.4",
"@types/jest": "^28.1.5",
"@types/jsdom": "^16.2.14",
"@types/libsodium-wrappers": "^0.7.9",
"@types/lodash": "^4.14.179",
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.3.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
**Note:** Version bump only for package @standardnotes/toast
## [1.3.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-06)
**Note:** Version bump only for package @standardnotes/toast
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/toast",
"version": "1.3.2",
"version": "1.3.3",
"private": true,
"main": "./src/index.ts",
"scripts": {
+7
View File
@@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.8.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [1.8.1](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-06)
**Note:** Version bump only for package @standardnotes/utils
+4 -4
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/utils",
"version": "1.8.1",
"version": "1.8.2",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
@@ -32,14 +32,14 @@
},
"devDependencies": {
"@types/dompurify": "^2.3.3",
"@types/jest": "^27.4.1",
"@types/jest": "^28.1.5",
"@types/jsdom": "^16.2.14",
"@types/lodash": "^4.14.179",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"eslint-plugin-prettier": "*",
"jest": "^27.5.1",
"jest": "^28.1.2",
"jsdom": "^20.0.0",
"ts-jest": "^27.1.3"
"ts-jest": "^28.0.5"
}
}
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.2.96](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
**Note:** Version bump only for package @standardnotes/web-server
## [1.2.95](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-12)
**Note:** Version bump only for package @standardnotes/web-server
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/web-server",
"version": "1.2.95",
"version": "1.2.96",
"license": "AGPL-3.0-or-later",
"private": true,
"author": "Standard Notes.",
+8
View File
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [3.40.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-13)
### Bug Fixes
* upgrade jest with types to latest version ([09e08ca](https://github.com/standardnotes/app/commit/09e08ca899ba8694cf43292e918c4c204c0d2cb9))
* upgrade jest-environment-jsdom ([7624f95](https://github.com/standardnotes/app/commit/7624f954625dae2858bc97cb46293d16ba185fa4))
* upgrade ts-jest in packages ([71e792d](https://github.com/standardnotes/app/commit/71e792da354ff90335b92758e196075a0f88d060))
## [3.40.2](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2022-07-12)
### Bug Fixes
+5 -5
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/web",
"version": "3.40.2",
"version": "3.40.3",
"license": "AGPL-3.0-or-later",
"main": "dist/app.js",
"author": "Standard Notes.",
@@ -26,7 +26,7 @@
"@babel/preset-env": "*",
"@babel/preset-typescript": "^7.16.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/jest": "^27.5.1",
"@types/jest": "^28.1.5",
"@types/react": "^17.0.42",
"@types/react-dom": "^18.0.5",
"@types/wicg-file-system-access": "^2020.9.5",
@@ -41,8 +41,8 @@
"eslint-plugin-react-hooks": "^4.4.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"lint-staged": ">=12",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "*",
@@ -55,7 +55,7 @@
"sass-loader": "*",
"svg-jest": "^1.0.1",
"tailwindcss": "^3.1.4",
"ts-jest": "^27.1.4",
"ts-jest": "^28.0.5",
"ts-loader": "^9.2.8",
"typescript": "*",
"webpack": "*",
+64 -140
View File
@@ -6152,7 +6152,7 @@ __metadata:
"@testing-library/jest-dom": 5.16.2
"@testing-library/react": 12.1.4
"@testing-library/user-event": 13.5.0
"@types/jest": 27.4.1
"@types/jest": ^28.1.5
"@types/lodash": 4.14.179
"@types/node": 17.0.21
"@types/react": 17.0.40
@@ -6178,7 +6178,7 @@ __metadata:
redux-mock-store: 1.5.4
source-map-explorer: 2.5.2
styled-components: 5.3.5
ts-jest: 27.1.4
ts-jest: ^28.0.5
typescript: 4.6.2
uuid: 8.3.2
languageName: unknown
@@ -6195,13 +6195,13 @@ __metadata:
"@standardnotes/security": ^1.1.0
"@standardnotes/services": "workspace:*"
"@standardnotes/utils": "workspace:*"
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@types/lodash": ^4.14.182
"@typescript-eslint/eslint-plugin": ^5.30.0
eslint-plugin-prettier: "*"
jest: ^27.5.1
jest: ^28.1.2
reflect-metadata: ^0.1.13
ts-jest: ^27.1.3
ts-jest: ^28.0.5
languageName: unknown
linkType: soft
@@ -6560,15 +6560,15 @@ __metadata:
"@standardnotes/services": "workspace:*"
"@standardnotes/sncrypto-common": "workspace:*"
"@standardnotes/utils": "workspace:*"
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@types/node": ^18.0.0
"@typescript-eslint/eslint-plugin": "*"
eslint: "*"
eslint-plugin-prettier: "*"
jest: ^27.5.1
jest: ^28.1.2
prettier: "*"
reflect-metadata: ^0.1.13
ts-jest: ^27.1.3
ts-jest: ^28.0.5
typescript: "*"
languageName: unknown
linkType: soft
@@ -6598,7 +6598,7 @@ __metadata:
"@standardnotes/auth": ^3.19.4
"@standardnotes/common": ^1.23.1
"@standardnotes/security": ^1.2.0
"@types/jest": ^28.1.4
"@types/jest": ^28.1.5
"@typescript-eslint/eslint-plugin": ^5.30.0
eslint-plugin-prettier: "*"
jest: ^28.1.2
@@ -6615,13 +6615,13 @@ __metadata:
"@standardnotes/common": ^1.23.1
"@standardnotes/services": "workspace:*"
"@standardnotes/utils": "workspace:*"
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@types/wicg-file-system-access": ^2020.9.5
"@typescript-eslint/eslint-plugin": ^5.30.0
eslint-plugin-prettier: "*"
jest: ^27.5.1
jest: ^28.1.2
reflect-metadata: ^0.1.13
ts-jest: ^27.1.3
ts-jest: ^28.0.5
ts-node: ^10.5.0
languageName: unknown
linkType: soft
@@ -6638,12 +6638,12 @@ __metadata:
"@standardnotes/services": "workspace:*"
"@standardnotes/sncrypto-common": "workspace:*"
"@standardnotes/utils": "workspace:*"
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@typescript-eslint/eslint-plugin": ^5.30.0
eslint-plugin-prettier: "*"
jest: ^27.5.1
jest: ^28.1.2
reflect-metadata: ^0.1.13
ts-jest: ^27.1.3
ts-jest: ^28.0.5
languageName: unknown
linkType: soft
@@ -6713,7 +6713,7 @@ __metadata:
prettier: "*"
react: ^18.1.0
react-dom: ^18.1.0
ts-jest: ^28.0.3
ts-jest: ^28.0.5
ts-loader: ^9.3.0
typescript: "*"
webpack: "*"
@@ -6884,7 +6884,7 @@ __metadata:
"@testing-library/jest-dom": ^5.16.2
"@testing-library/react": ^12.1.4
"@testing-library/user-event": ^13.5.0
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@types/lodash": ^4.14.179
"@types/marked": ^4.0.2
"@types/node": ^17.0.21
@@ -6944,7 +6944,7 @@ __metadata:
"@standardnotes/web": "workspace:*"
"@types/detox": ^18.1.0
"@types/faker": ^6.6.9
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@types/js-base64": ^3.3.1
"@types/react": 17.0.2
"@types/react-native": ^0.67.3
@@ -6961,7 +6961,7 @@ __metadata:
eslint-plugin-prettier: ^4.0.0
faker: ^6.6.6
get-yarn-workspaces: ^1.0.2
jest: ^27.5.1
jest: ^28.1.2
jest-circus: ^27.5.1
js-base64: ^3.7.2
metro-react-native-babel-preset: ^0.70.1
@@ -7023,14 +7023,14 @@ __metadata:
"@standardnotes/features": "workspace:*"
"@standardnotes/responses": "workspace:*"
"@standardnotes/utils": "workspace:*"
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@types/lodash": ^4.14.182
"@typescript-eslint/eslint-plugin": ^5.30.0
eslint-plugin-prettier: "*"
jest: ^27.5.1
jest: ^28.1.2
lodash: ^4.17.21
reflect-metadata: ^0.1.13
ts-jest: ^27.1.3
ts-jest: ^28.0.5
typescript: "*"
languageName: unknown
linkType: soft
@@ -7089,12 +7089,12 @@ __metadata:
"@standardnotes/common": ^1.23.1
"@standardnotes/features": "workspace:*"
"@standardnotes/security": ^1.1.0
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@typescript-eslint/eslint-plugin": ^5.30.0
eslint-plugin-prettier: "*"
jest: ^27.5.1
jest: ^28.1.2
reflect-metadata: ^0.1.13
ts-jest: ^27.1.3
ts-jest: ^28.0.5
languageName: unknown
linkType: soft
@@ -7159,13 +7159,13 @@ __metadata:
"@standardnotes/responses": "workspace:*"
"@standardnotes/security": ^1.2.0
"@standardnotes/utils": "workspace:*"
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@typescript-eslint/eslint-plugin": ^5.30.0
"@typescript-eslint/parser": ^5.12.1
eslint-plugin-prettier: "*"
jest: ^27.5.1
jest: ^28.1.2
reflect-metadata: ^0.1.13
ts-jest: ^27.1.3
ts-jest: ^28.0.5
languageName: unknown
linkType: soft
@@ -7276,7 +7276,7 @@ __metadata:
"@standardnotes/sncrypto-web": "workspace:*"
"@standardnotes/utils": "workspace:*"
"@types/crypto-js": ^4.1.1
"@types/jest": ^28.1.4
"@types/jest": ^28.1.5
"@types/jsdom": ^16.2.14
"@types/libsodium-wrappers": ^0.7.9
"@types/lodash": ^4.14.179
@@ -7434,18 +7434,18 @@ __metadata:
dependencies:
"@standardnotes/common": ^1.23.1
"@types/dompurify": ^2.3.3
"@types/jest": ^27.4.1
"@types/jest": ^28.1.5
"@types/jsdom": ^16.2.14
"@types/lodash": ^4.14.179
"@types/node": ^18.0.0
"@typescript-eslint/eslint-plugin": ^5.30.0
dompurify: ^2.3.8
eslint-plugin-prettier: "*"
jest: ^27.5.1
jest: ^28.1.2
jsdom: ^20.0.0
lodash: ^4.17.21
reflect-metadata: ^0.1.13
ts-jest: ^27.1.3
ts-jest: ^28.0.5
languageName: unknown
linkType: soft
@@ -7482,7 +7482,7 @@ __metadata:
"@standardnotes/snjs": "workspace:*"
"@standardnotes/styles": "workspace:*"
"@standardnotes/toast": "workspace:*"
"@types/jest": ^27.5.1
"@types/jest": ^28.1.5
"@types/react": ^17.0.42
"@types/react-dom": ^18.0.5
"@types/wicg-file-system-access": ^2020.9.5
@@ -7498,8 +7498,8 @@ __metadata:
eslint-plugin-react-hooks: ^4.4.0
html-webpack-plugin: ^5.5.0
identity-obj-proxy: ^3.0.0
jest: ^27.5.1
jest-environment-jsdom: ^27.5.1
jest: ^28.1.2
jest-environment-jsdom: ^28.1.2
lint-staged: ">=12"
mini-css-extract-plugin: ^2.6.0
mobx: ^6.5.0
@@ -7521,7 +7521,7 @@ __metadata:
styled-components: ^5.3.5
svg-jest: ^1.0.1
tailwindcss: ^3.1.4
ts-jest: ^27.1.4
ts-jest: ^28.0.5
ts-loader: ^9.2.8
typescript: "*"
webpack: "*"
@@ -8346,7 +8346,7 @@ __metadata:
languageName: node
linkType: hard
"@types/jest@npm:*, @types/jest@npm:^28.1.4":
"@types/jest@npm:*":
version: 28.1.4
resolution: "@types/jest@npm:28.1.4"
dependencies:
@@ -8356,23 +8356,13 @@ __metadata:
languageName: node
linkType: hard
"@types/jest@npm:27.4.1":
version: 27.4.1
resolution: "@types/jest@npm:27.4.1"
"@types/jest@npm:^28.1.5":
version: 28.1.5
resolution: "@types/jest@npm:28.1.5"
dependencies:
jest-matcher-utils: ^27.0.0
pretty-format: ^27.0.0
checksum: 5184f3eef4832d01ee8f59bed15eec45ccc8e29c724a5e6ce37bf74396b37bdf04f557000f45ba4fc38ae6075cf9cfcce3d7a75abc981023c61ceb27230a93e4
languageName: node
linkType: hard
"@types/jest@npm:^27.4.1, @types/jest@npm:^27.5.1":
version: 27.5.2
resolution: "@types/jest@npm:27.5.2"
dependencies:
jest-matcher-utils: ^27.0.0
pretty-format: ^27.0.0
checksum: 7e11c6826aa429ad990dc262e4e4b54aa36573287fddf15773e4137f07d11d3105f0dd9f1baff73252160a057df23f5529bb83b1bf83cd3f45f9460a5ca5c22e
jest-matcher-utils: ^28.0.0
pretty-format: ^28.0.0
checksum: 994bfc25a5e767ec1506a2a7d94e60a7a5645b2e4e8444c56ae902f3a3e27ae54e821e41c1b4e7c8d7f5022bf5abfdd0460ead223ba6f2d0a194e5b2bed1ad76
languageName: node
linkType: hard
@@ -23246,7 +23236,7 @@ __metadata:
languageName: node
linkType: hard
"jest-matcher-utils@npm:^27.0.0, jest-matcher-utils@npm:^27.5.1":
"jest-matcher-utils@npm:^27.5.1":
version: 27.5.1
resolution: "jest-matcher-utils@npm:27.5.1"
dependencies:
@@ -23626,7 +23616,7 @@ __metadata:
languageName: node
linkType: hard
"jest-util@npm:^27.0.0, jest-util@npm:^27.5.1":
"jest-util@npm:^27.5.1":
version: 27.5.1
resolution: "jest-util@npm:27.5.1"
dependencies:
@@ -23777,7 +23767,7 @@ __metadata:
languageName: node
linkType: hard
"jest@npm:^27.4.3, jest@npm:^27.5.1":
"jest@npm:^27.4.3":
version: 27.5.1
resolution: "jest@npm:27.5.1"
dependencies:
@@ -24183,15 +24173,6 @@ __metadata:
languageName: node
linkType: hard
"json5@npm:2.x, json5@npm:^2.1.2, json5@npm:^2.2.0, json5@npm:^2.2.1":
version: 2.2.1
resolution: "json5@npm:2.2.1"
bin:
json5: lib/cli.js
checksum: 74b8a23b102a6f2bf2d224797ae553a75488b5adbaee9c9b6e5ab8b510a2fc6e38f876d4c77dea672d4014a44b2399e15f2051ac2b37b87f74c0c7602003543b
languageName: node
linkType: hard
"json5@npm:^0.5.1":
version: 0.5.1
resolution: "json5@npm:0.5.1"
@@ -24212,6 +24193,15 @@ __metadata:
languageName: node
linkType: hard
"json5@npm:^2.1.2, json5@npm:^2.2.0, json5@npm:^2.2.1":
version: 2.2.1
resolution: "json5@npm:2.2.1"
bin:
json5: lib/cli.js
checksum: 74b8a23b102a6f2bf2d224797ae553a75488b5adbaee9c9b6e5ab8b510a2fc6e38f876d4c77dea672d4014a44b2399e15f2051ac2b37b87f74c0c7602003543b
languageName: node
linkType: hard
"jsonfile@npm:^2.1.0":
version: 2.4.0
resolution: "jsonfile@npm:2.4.0"
@@ -30960,7 +30950,7 @@ __metadata:
languageName: node
linkType: hard
"pretty-format@npm:^27.0.0, pretty-format@npm:^27.0.2, pretty-format@npm:^27.5.1":
"pretty-format@npm:^27.0.2, pretty-format@npm:^27.5.1":
version: 27.5.1
resolution: "pretty-format@npm:27.5.1"
dependencies:
@@ -37320,73 +37310,7 @@ __metadata:
languageName: node
linkType: hard
"ts-jest@npm:27.1.4":
version: 27.1.4
resolution: "ts-jest@npm:27.1.4"
dependencies:
bs-logger: 0.x
fast-json-stable-stringify: 2.x
jest-util: ^27.0.0
json5: 2.x
lodash.memoize: 4.x
make-error: 1.x
semver: 7.x
yargs-parser: 20.x
peerDependencies:
"@babel/core": ">=7.0.0-beta.0 <8"
"@types/jest": ^27.0.0
babel-jest: ">=27.0.0 <28"
jest: ^27.0.0
typescript: ">=3.8 <5.0"
peerDependenciesMeta:
"@babel/core":
optional: true
"@types/jest":
optional: true
babel-jest:
optional: true
esbuild:
optional: true
bin:
ts-jest: cli.js
checksum: d2cc2719ed2884a880ab50d2c14c311834be9c88bc79d0064fa0189afce5c296d7676314d26cc3f7e82ddd52df272c2d4137a832c89616f30cbe8f43e30f9a29
languageName: node
linkType: hard
"ts-jest@npm:^27.1.3, ts-jest@npm:^27.1.4":
version: 27.1.5
resolution: "ts-jest@npm:27.1.5"
dependencies:
bs-logger: 0.x
fast-json-stable-stringify: 2.x
jest-util: ^27.0.0
json5: 2.x
lodash.memoize: 4.x
make-error: 1.x
semver: 7.x
yargs-parser: 20.x
peerDependencies:
"@babel/core": ">=7.0.0-beta.0 <8"
"@types/jest": ^27.0.0
babel-jest: ">=27.0.0 <28"
jest: ^27.0.0
typescript: ">=3.8 <5.0"
peerDependenciesMeta:
"@babel/core":
optional: true
"@types/jest":
optional: true
babel-jest:
optional: true
esbuild:
optional: true
bin:
ts-jest: cli.js
checksum: 3ef51c538b82f49b3f529331c1a017871a2f90e7a9a6e69333304755036d121818c6b120e2ce32dd161ff8bb2487efec0c790753ecd39b46a9ed1ce0d241464c
languageName: node
linkType: hard
"ts-jest@npm:^28.0.3, ts-jest@npm:^28.0.5":
"ts-jest@npm:^28.0.5":
version: 28.0.5
resolution: "ts-jest@npm:28.0.5"
dependencies:
@@ -40183,13 +40107,6 @@ __metadata:
languageName: node
linkType: hard
"yargs-parser@npm:20.x, yargs-parser@npm:^20.2.2, yargs-parser@npm:^20.2.3":
version: 20.2.9
resolution: "yargs-parser@npm:20.2.9"
checksum: 8bb69015f2b0ff9e17b2c8e6bfe224ab463dd00ca211eece72a4cd8a906224d2703fb8a326d36fdd0e68701e201b2a60ed7cf81ce0fd9b3799f9fe7745977ae3
languageName: node
linkType: hard
"yargs-parser@npm:^13.1.2":
version: 13.1.2
resolution: "yargs-parser@npm:13.1.2"
@@ -40210,6 +40127,13 @@ __metadata:
languageName: node
linkType: hard
"yargs-parser@npm:^20.2.2, yargs-parser@npm:^20.2.3":
version: 20.2.9
resolution: "yargs-parser@npm:20.2.9"
checksum: 8bb69015f2b0ff9e17b2c8e6bfe224ab463dd00ca211eece72a4cd8a906224d2703fb8a326d36fdd0e68701e201b2a60ed7cf81ce0fd9b3799f9fe7745977ae3
languageName: node
linkType: hard
"yargs-parser@npm:^21.0.0, yargs-parser@npm:^21.0.1":
version: 21.0.1
resolution: "yargs-parser@npm:21.0.1"