Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Release] 3.2.2 #382

Merged
merged 17 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,6 @@ apps/html/index.html
apps/nodejs/main.ts
apps/react/src/app/app.tsx

storage.test.db
storage.test.db

.nx
4 changes: 3 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@
/.vscode
/node_modules
/tmp
/packages/*/dist
/packages/*/dist
.nx
tools
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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).

# [3.2.2] - 2024-02-27

- [staging/3.2.2](https://github.com/LIT-Protocol/js-sdk/pull/382)

# [3.2.0] - 2024-02-20

- [staging/3.2.0](https://github.com/LIT-Protocol/js-sdk/pull/370)
Expand Down
64 changes: 31 additions & 33 deletions README.md

Large diffs are not rendered by default.

27 changes: 13 additions & 14 deletions apps/demo-encrypt-decrypt-react/project.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"name": "demo-encrypt-decrypt-react",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/demo-encrypt-decrypt-react/src",
"projectType": "application",
"targets": {
"serve":{
"executor": "nx:run-commands",
"options": {
"command": "cd apps/demo-encrypt-decrypt-react && yarn start"
}
"name": "demo-encrypt-decrypt-react",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/demo-encrypt-decrypt-react/src",
"projectType": "application",
"targets": {
"serve": {
"executor": "nx:run-commands",
"options": {
"command": "cd apps/demo-encrypt-decrypt-react && yarn start"
}
},
"tags": []
}
}
},
"tags": []
}
Binary file modified apps/demo-pkp-session-sigs-3.0.6/bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion apps/demo-pkp-session-sigs-3.0.6/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
"tailwindcss": "^3",
"typescript": "^5"
}
}
}
Binary file modified apps/demo-pkp-session-sigs/bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions apps/html/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- (DO NOT EDIT!) (HTML) THIS FILE IS AUTOMATICALLY GENERATED FROM tools/scripts/gen-html.mjs Thu, 22 Feb 2024 05:05:54 GMT -->
<!-- (DO NOT EDIT!) (HTML) THIS FILE IS AUTOMATICALLY GENERATED FROM tools/scripts/gen-html.mjs Sat, 24 Feb 2024 04:18:12 GMT -->
<!DOCTYPE html>
<html lang="en">
<head>
Expand Down Expand Up @@ -62,7 +62,7 @@
</style>
</head>
<body>
(HTML) THIS FILE IS AUTOMATICALLY GENERATED FROM tools/scripts/gen-html.mjs Thu, 22 Feb 2024 05:05:54 GMT
(HTML) THIS FILE IS AUTOMATICALLY GENERATED FROM tools/scripts/gen-html.mjs Sat, 24 Feb 2024 04:18:12 GMT

<!-- ==================== ALL EXPORTED VANILLA LIBRARIES ==================== -->

Expand Down
27 changes: 13 additions & 14 deletions apps/html/project.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"name": "html",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/html/src",
"projectType": "application",
"targets": {
"serve":{
"executor": "nx:run-commands",
"options": {
"command": "node apps/html/server.js "
}
"name": "html",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/html/src",
"projectType": "application",
"targets": {
"serve": {
"executor": "nx:run-commands",
"options": {
"command": "node apps/html/server.js "
}
},
"tags": []
}
}
},
"tags": []
}
8 changes: 5 additions & 3 deletions apps/nodejs/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,19 @@
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:webpack",
"executor": "@nx/webpack:webpack",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/nodejs",
"main": "apps/nodejs/main.ts",
"tsConfig": "apps/nodejs/tsconfig.app.json",
"assets": []
"assets": [],
"compiler": "tsc",
"target": "node"
}
},
"serve": {
"executor": "@nrwl/node:node",
"executor": "@nx/js:node",
"options": {
"buildTarget": "nodejs:build"
}
Expand Down
2 changes: 1 addition & 1 deletion apps/react/.babelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"presets": [
[
"@nrwl/react/babel",
"@nx/react/babel",
{
"runtime": "automatic"
}
Expand Down
11 changes: 4 additions & 7 deletions apps/react/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/web:webpack",
"executor": "@nx/web:webpack",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "production",
"options": {
Expand All @@ -21,20 +21,17 @@
"scripts": [],
"webpackConfig": "apps/react/webpack.config.js"
},
"configurations": {

}
"configurations": {}
},
"serve": {
"executor": "@nrwl/web:dev-server",
"executor": "@nx/web:dev-server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "react:build",
"hmr": true,
"port": 4003
},
"configurations": {
}
"configurations": {}
}
},
"tags": []
Expand Down
2 changes: 1 addition & 1 deletion apps/react/src/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1805,7 +1805,7 @@ pre {
`,
}}
/>
(REACT) THIS FILE IS AUTOMATICALLY GENERATED FROM tools/scripts/gen-react.mjs Thu, 22 Feb 2024 05:05:54 GMT
(REACT) THIS FILE IS AUTOMATICALLY GENERATED FROM tools/scripts/gen-react.mjs Sat, 24 Feb 2024 04:18:12 GMT
<div id="root"></div>
<pre><code id="result"></code></pre>
</>
Expand Down
4 changes: 2 additions & 2 deletions apps/react/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"types": ["node"]
},
"files": [
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts",
"../../node_modules/@nrwl/react/typings/image.d.ts"
"../../node_modules/@nx/react/typings/cssmodule.d.ts",
"../../node_modules/@nx/react/typings/image.d.ts"
],
"exclude": [
"jest.config.ts",
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion doc/assets/search.js

Large diffs are not rendered by default.

Loading
Loading