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

chore: exit pre mode from 0.22 next #650

Merged
merged 2 commits into from
Mar 12, 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
2 changes: 1 addition & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"mode": "pre",
"mode": "exit",
"tag": "next",
"initialVersions": {
"@ckb-lumos/base": "0.21.1",
Expand Down
5 changes: 4 additions & 1 deletion packages/molecule/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ To generate all the molecule files in a directory that match the pattern of `**/
prepend: "import { Uint32, Uint64, Uint128 } from './customized'",
// the input schema directory, all **/*.mol in the directory will be processed
schemaDir: "schemas",
outputDir: "generated",
// the output directory
outDir: "generated",
}
```

Expand All @@ -76,3 +77,5 @@ The parser inside `@ckb-lumos/molecule` is based on the [EBNF](https://github.co

- comment starts with `#`
- comment defined in the `struct`, `table`, or `union` is not supported well

Therefore, to use `lumos-molecule-codegen`, you need to make sure the comments should not be placed
Loading