Skip to content

Commit

Permalink
Merge pull request #5 from tact-lang/main
Browse files Browse the repository at this point in the history
merge upstream into main
  • Loading branch information
sansx authored Jul 16, 2024
2 parents 3fb8995 + 241c5e5 commit e61b8cd
Show file tree
Hide file tree
Showing 80 changed files with 5,431 additions and 2,283 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"
cache: yarn

- name: Setup Pages
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test-build-nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"
cache: yarn

- name: Setup Pages
Expand All @@ -60,4 +60,7 @@ jobs:
run: yarn install --frozen-lockfile

- name: Build documentation
run: yarn build-pages
run: yarn build-pages

- name: Spell check documentation
run: yarn spell
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ yarn-error.log
.idea/
.helix/
.vim/
.gitpod.yml
79 changes: 79 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"language": "en",
"words": [
"basechain",
"bounceable",
"cheatsheet",
"Cheatsheet",
"cheatsheets",
"Cheatsheets",
"comptime",
"Comptime",
"Decompilation",
"decompilation",
"decompiles",
"decompiling",
"dnsresolve",
"Epva", // part of a base64 string
"Fift",
"ipfs",
"IPFS",
"jetton",
"Jetton",
"Jettons",
"jettons",
"masterchain",
"Masterchain",
"mathrm",
"nanotons",
"nextra",
"Offchain",
"RAWRESERVE",
"respecifying",
"Satoshi",
"seamus",
"Seamus",
"seqno",
"shardchains",
"stdlibs",
"STON.fi",
"TIMELOCK",
"timeouted",
"Timeouted",
"Toncoin",
"Toncoins",
"Uninit",
"vogons", // 42 vogons
"workchain",
"workchains",
"xtwitter"
],
"ignoreRegExpList": [
"\\(#.*\\)",
"^\\[.+\\]: .+", // link declarations like [foo]: /ref/stdlib-ownable#bar
"\\[.+\\]\\[.+\\]", // links like [`Resumable{:tact}`][res]
"\\[.+\\]\\(.+\\)", // links like [`self.toCell().asSlice(){:tact}`](/ref/core-cells#cellasslice)
"address\\(\".+\"\\)", // Ton addresses
"mathrm\\{.+\\}", // LaTeX subset
"\\[#.+\\]", // [#nativereserve-combining-modes-with-flags]
"href=\".+\"", // href="/cookbook/dexes/stonfi"
"\".+\": \".+\"", // "from": "kQBrSAP2y7QIUw4_1q0qciHfqdFmOYR9CC1oinn7kyWWRuoV",
"Urls"
],
"flagWords": [],
"ignorePaths": [
".github/temp-archive",
"components/icons",
"dist",
"grammars/grammar-ohm.json",
"grammars/grammar-tact.json",
"next.config.js",
"node_modules",
"out",
"package.json",
"pages/cookbook/dexes/_meta.js",
"pages/ref/spec.mdx"
]
}
Loading

0 comments on commit e61b8cd

Please sign in to comment.