-
Notifications
You must be signed in to change notification settings - Fork 3
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
Add Lectern Client to monorepo #208
Conversation
libraries/dictionary/package.json
Outdated
@@ -5,7 +5,7 @@ | |||
"main": "dist/index.js", | |||
"scripts": { | |||
"build": "pnpm build:clean && tsc", | |||
"build:clean": "rm -rf dist/ && mkdir dist", | |||
"build:clean": "rimraf -rf dist/ && mkdir dist", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need arguments -rf
when using rimraf
libraries/common/package.json
Outdated
@@ -5,9 +5,12 @@ | |||
"main": "dist/index.js", | |||
"scripts": { | |||
"build": "pnpm build:clean && tsc", | |||
"build:clean": "rm -rf dist/ && mkdir dist" | |||
"build:clean": "rimraf -rf dist/ && mkdir dist" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need arguments -rf when using rimraf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just left a comment overall LGTM
This adds the existing Lectern Client code into this monorepo. Previously this was written and maintained in overture-stack/js-lectern-client. This code will now be maintained in the same directory as the Lectern server so that types and utilities can be shared.
The code added in this request includes a mostly unchanged copy/paste of the lectern client in its most up to date form. A small list of changes were made to make it align with the processes of this repository, including:
/lib
to/dist
This accomplishes the base goals of: #206 , but does not touch the refactoring tasks such as updating the client to use the same types as the server.