Merge branch 'develop' into sidv/contributors

* develop: (309 commits)
  Update docs
  fix Lint
  Update CHANGELOG.md
  Update CHANGELOG.md
  fix: fix exports
  Doc (typo): remove duplicate "be"
  Fix readme link
  Regenerate mermaid docs
  Add deepdwn to cspell
  Add Deepdwn to native integrations list
  docs: Fix changelog
  docs: v10 breaking changes
  Remove `null` from diagrams before render
  fix docs diagram
  Updated version
  Minor cleanup to trigger build.
  Fix spellings
  Wrap option working in test case
  Fix typos
  Minor cleanup
  ...
This commit is contained in:
Sidharth Vinod
2023-02-24 21:14:55 +05:30
298 changed files with 11598 additions and 4666 deletions

View File

@@ -23,7 +23,7 @@ const lint = async (file: string): Promise<boolean> => {
return result.errorCount === 0;
};
(async () => {
const main = async () => {
const jisonFiles = await globby(['./packages/**/*.jison', '!./**/node_modules/**'], {
dot: true,
});
@@ -31,4 +31,6 @@ const lint = async (file: string): Promise<boolean> => {
if (lintResults.includes(false)) {
process.exit(1);
}
})();
};
void main();