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

feat: introduce the turborepo to the parser.js #992

Merged
merged 24 commits into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
2e000ba
web: prepare web codebase for turborepo
AyushNautiyalDeveloper Apr 20, 2024
853be5c
feat(create-turbo): create basic
turbobot-temp Apr 20, 2024
480e0ab
feat(create-turbo): apply official-starter transform
turbobot-temp Apr 20, 2024
a88dd0a
feat(create-turbo): apply package-manager transform
turbobot-temp Apr 20, 2024
6e2463c
initial commit
AyushNautiyalDeveloper Apr 20, 2024
c52d8f0
Merge remote-tracking branch 'parser/master'
AyushNautiyalDeveloper Apr 20, 2024
648aa1f
Added the required scripts for the turborepo
AyushNautiyalDeveloper Apr 21, 2024
d455df3
removed unwanted files.
AyushNautiyalDeveloper Apr 21, 2024
9939c51
Added the gitignore file.
AyushNautiyalDeveloper Apr 21, 2024
f25d259
fixed the eslintrc file.
AyushNautiyalDeveloper Apr 21, 2024
7c25ae9
Added the required changes .
AyushNautiyalDeveloper Apr 29, 2024
dcd54eb
Added the required
AyushNautiyalDeveloper Apr 30, 2024
994f9a4
Merge branch 'master' into master
smoya May 3, 2024
3555b0b
Merge branch 'master' into master
smoya May 6, 2024
d2cfa24
added the build script in the turbo.json file.
AyushNautiyalDeveloper May 6, 2024
423aa67
Corrected the Monorepo spelling.
AyushNautiyalDeveloper May 11, 2024
5ae43bf
added the readmd file.
AyushNautiyalDeveloper May 22, 2024
1e0484a
Added the correct context for the monorepo in the Readme.md file.
AyushNautiyalDeveloper May 27, 2024
0d329da
Added the correct version.
AyushNautiyalDeveloper May 27, 2024
6f8e295
remove the unwated dev dependencies.
AyushNautiyalDeveloper May 27, 2024
c32f8b0
made the required readmd file changes.
AyushNautiyalDeveloper May 29, 2024
7a6ce88
updated the lock file.
AyushNautiyalDeveloper Jun 2, 2024
5556406
added the cache false for the test command.
AyushNautiyalDeveloper Jun 3, 2024
1378ee3
Merge branch 'master' of github.com:asyncapi/parser-js
AyushNautiyalDeveloper Jun 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 3 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ node_modules
/lib
/esm
/cjs
/browser
/browser
esm
cjs
134 changes: 0 additions & 134 deletions .eslintrc

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ node_modules
/cjs
/browser
*.tgz
.turbo
Empty file added .npmrc
Empty file.
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

5 changes: 4 additions & 1 deletion README.md
ayushnau marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[![AsyncAPI JavaScript Parser](./assets/logo.png)](https://www.asyncapi.com)

Use this package to validate and parse AsyncAPI documents —either YAML or JSON— in your Node.js or browser application.
This is a Monorepo managed using [Turborepo](https://turbo.build/) and contains the following package:

1. [Parser-js](apps/parser): Use this package to validate and parse AsyncAPI documents —either YAML or JSON— in your Node.js or browser application.

Validation is powered by [Spectral](https://github.com/stoplightio/spectral).
Updated bundle for the browser is always attached to the GitHub Release.

Expand Down
11 changes: 11 additions & 0 deletions apps/parser/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
node_modules
.vscode
.DS_Store
/docs
/coverage
/lib
/esm
/cjs
/browser
esm
cjs
Loading
Loading