Skip to content

Commit 9249622

Browse files
authored
Merge pull request #948 from LIT-Protocol/feature/jss-120-nagachore-cleanup
Feature/jss 120 nagachore cleanup
2 parents 7850b1f + dfb7c08 commit 9249622

File tree

67 files changed

+5818
-3702
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+5818
-3702
lines changed

.github/workflows/e2e-naga.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,18 @@ jobs:
169169
env:
170170
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
171171
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
172+
173+
- name: Sync docs changelog
174+
run: pnpm sync:docs-changelog
175+
176+
- name: Commit docs changelog
177+
run: |
178+
if git diff --quiet docs/changelog.mdx; then
179+
echo "Docs changelog already up to date."
180+
exit 0
181+
fi
182+
git config user.name "github-actions[bot]"
183+
git config user.email "github-actions[bot]@users.noreply.github.com"
184+
git add docs/changelog.mdx
185+
git commit -m "chore: sync docs changelog"
186+
git push origin ${{ github.ref_name }}

.prettierignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@
1414
tools
1515
/packages/wasm/rust/*
1616
/packages/wasm/src/pkg/*
17-
**/*/dist
17+
**/*/dist
18+
/docs
19+
/packages/**/CHANGELOG.md

docs/README.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Mintlify Starter Kit
2+
3+
Use the starter kit to get your docs deployed and ready to customize.
4+
5+
Click the green **Use this template** button at the top of this repo to copy the Mintlify starter kit. The starter kit contains examples with
6+
7+
- Guide pages
8+
- Navigation
9+
- Customizations
10+
- API reference pages
11+
- Use of popular components
12+
13+
**[Follow the full quickstart guide](https://starter.mintlify.com/quickstart)**
14+
15+
## Development
16+
17+
Install the [Mintlify CLI](https://www.npmjs.com/package/mint) to preview your documentation changes locally. To install, use the following command:
18+
19+
```
20+
npm i -g mint
21+
```
22+
23+
Run the following command at the root of your documentation, where your `docs.json` is located:
24+
25+
```
26+
mint dev
27+
```
28+
29+
View your local preview at `http://localhost:3000`.
30+
31+
## Publishing changes
32+
33+
Install our GitHub app from your [dashboard](https://dashboard.mintlify.com/settings/organization/github-app) to propagate changes from your repo to your deployment. Changes are deployed to production automatically after pushing to the default branch.
34+
35+
## Need help?
36+
37+
### Troubleshooting
38+
39+
- If your dev environment isn't running: Run `mint update` to ensure you have the most recent version of the CLI.
40+
- If a page loads as a 404: Make sure you are running in a folder with a valid `docs.json`.
41+
42+
### Resources
43+
- [Mintlify documentation](https://mintlify.com/docs)
44+
- [Mintlify community](https://mintlify.com/community)
45+
# docs-v2

docs/changelog.mdx

Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
---
2+
title: "Changelog"
3+
description: "Keep track of changes and updates across the Lit JS SDK packages"
4+
rss: true
5+
---
6+
7+
| Package | Latest version | Summary |
8+
| ------- | -------------- | ------- |
9+
| [@lit-protocol/lit-client](#lit-client) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Flit-client) | - |
10+
| [@lit-protocol/auth](#auth) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Fauth) | - |
11+
| [@lit-protocol/networks](#networks) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Fnetworks) | Updated dependencies |
12+
| [@lit-protocol/access-control-conditions](#access-control-conditions) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Faccess-control-conditions) | - |
13+
| [@lit-protocol/access-control-conditions-schemas](#access-control-conditions-schemas) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Faccess-control-conditions-schemas) | - |
14+
| [@lit-protocol/auth-helpers](#auth-helpers) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Fauth-helpers) | - |
15+
| [@lit-protocol/constants](#constants) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Fconstants) | Updated dependencies |
16+
| [@lit-protocol/contracts](#contracts) | [0.5.3](https://www.npmjs.com/package/%40lit-protocol%2Fcontracts) | release `naga-test` network support |
17+
| [@lit-protocol/crypto](#crypto) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Fcrypto) | - |
18+
| [@lit-protocol/logger](#logger) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Flogger) | - |
19+
| [@lit-protocol/schemas](#schemas) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Fschemas) | - |
20+
| [@lit-protocol/types](#types) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Ftypes) | - |
21+
| [@lit-protocol/wasm](#wasm) | [8.0.2](https://www.npmjs.com/package/%40lit-protocol%2Fwasm) | - |
22+
| [@lit-protocol/wrapped-keys](#wrapped-keys) | [8.0.1](https://www.npmjs.com/package/%40lit-protocol%2Fwrapped-keys) | fix package metadata so bundlers load the CommonJS builds again |
23+
| [@lit-protocol/wrapped-keys-lit-actions](#wrapped-keys-lit-actions) | [8.0.1](https://www.npmjs.com/package/%40lit-protocol%2Fwrapped-keys-lit-actions) | fix package metadata so bundlers load the CommonJS builds again |
24+
25+
<Update
26+
label="lit-client"
27+
description="v8.0.2"
28+
tags={["Release"]}
29+
rss={{ title: "lit-client", description: "No release notes provided yet." }}
30+
id="lit-client"
31+
>
32+
33+
No release notes available.
34+
</Update>
35+
36+
<Update
37+
label="auth"
38+
description="v8.0.2"
39+
tags={["Release"]}
40+
rss={{ title: "auth", description: "No release notes provided yet." }}
41+
id="auth"
42+
>
43+
44+
No release notes available.
45+
</Update>
46+
47+
<Update
48+
label="networks"
49+
description="v8.0.2"
50+
tags={["Patch Changes"]}
51+
rss={{ title: "networks", description: "Updated dependencies" }}
52+
id="networks"
53+
>
54+
55+
## Patch Changes
56+
57+
- Updated dependencies
58+
- @lit-protocol/contracts@0.5.3
59+
</Update>
60+
61+
<Update
62+
label="access-control-conditions"
63+
description="v8.0.2"
64+
tags={["Release"]}
65+
rss={{ title: "access-control-conditions", description: "No release notes provided yet." }}
66+
id="access-control-conditions"
67+
>
68+
69+
No release notes available.
70+
</Update>
71+
72+
<Update
73+
label="access-control-conditions-schemas"
74+
description="v8.0.2"
75+
tags={["Release"]}
76+
rss={{ title: "access-control-conditions-schemas", description: "No release notes provided yet." }}
77+
id="access-control-conditions-schemas"
78+
>
79+
80+
No release notes available.
81+
</Update>
82+
83+
<Update
84+
label="auth-helpers"
85+
description="v8.0.2"
86+
tags={["Release"]}
87+
rss={{ title: "auth-helpers", description: "No release notes provided yet." }}
88+
id="auth-helpers"
89+
>
90+
91+
No release notes available.
92+
</Update>
93+
94+
<Update
95+
label="constants"
96+
description="v8.0.2"
97+
tags={["Patch Changes"]}
98+
rss={{ title: "constants", description: "Updated dependencies" }}
99+
id="constants"
100+
>
101+
102+
## Patch Changes
103+
104+
- Updated dependencies
105+
- @lit-protocol/contracts@0.5.3
106+
</Update>
107+
108+
<Update
109+
label="contracts"
110+
description="v0.5.3"
111+
tags={["Patch Changes"]}
112+
rss={{ title: "contracts", description: "release `naga-test` network support" }}
113+
id="contracts"
114+
>
115+
116+
## Patch Changes
117+
118+
- release `naga-test` network support
119+
</Update>
120+
121+
<Update
122+
label="crypto"
123+
description="v8.0.2"
124+
tags={["Release"]}
125+
rss={{ title: "crypto", description: "No release notes provided yet." }}
126+
id="crypto"
127+
>
128+
129+
No release notes available.
130+
</Update>
131+
132+
<Update
133+
label="logger"
134+
description="v8.0.2"
135+
tags={["Release"]}
136+
rss={{ title: "logger", description: "No release notes provided yet." }}
137+
id="logger"
138+
>
139+
140+
No release notes available.
141+
</Update>
142+
143+
<Update
144+
label="schemas"
145+
description="v8.0.2"
146+
tags={["Release"]}
147+
rss={{ title: "schemas", description: "No release notes provided yet." }}
148+
id="schemas"
149+
>
150+
151+
No release notes available.
152+
</Update>
153+
154+
<Update
155+
label="types"
156+
description="v8.0.2"
157+
tags={["Release"]}
158+
rss={{ title: "types", description: "No release notes provided yet." }}
159+
id="types"
160+
>
161+
162+
No release notes available.
163+
</Update>
164+
165+
<Update
166+
label="wasm"
167+
description="v8.0.2"
168+
tags={["Release"]}
169+
rss={{ title: "wasm", description: "No release notes provided yet." }}
170+
id="wasm"
171+
>
172+
173+
No release notes available.
174+
</Update>
175+
176+
<Update
177+
label="wrapped-keys"
178+
description="v8.0.1"
179+
tags={["Patch Changes"]}
180+
rss={{ title: "wrapped-keys", description: "fix package metadata so bundlers load the CommonJS builds again" }}
181+
id="wrapped-keys"
182+
>
183+
184+
## Patch Changes
185+
186+
- fix package metadata so bundlers load the CommonJS builds again
187+
</Update>
188+
189+
<Update
190+
label="wrapped-keys-lit-actions"
191+
description="v8.0.1"
192+
tags={["Patch Changes"]}
193+
rss={{ title: "wrapped-keys-lit-actions", description: "fix package metadata so bundlers load the CommonJS builds again" }}
194+
id="wrapped-keys-lit-actions"
195+
>
196+
197+
## Patch Changes
198+
199+
- fix package metadata so bundlers load the CommonJS builds again
200+
</Update>

0 commit comments

Comments
 (0)