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

Add Lectern Client to monorepo #208

Merged
merged 9 commits into from
Jun 11, 2024
Merged

Conversation

joneubank
Copy link
Contributor

@joneubank joneubank commented May 26, 2024

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:

  • Updating to latest TS version
  • Update tsconfig to match other packages in monorepo
  • Formatting with prettier to update indents from spaces to tabs
  • Cleaning up build scripts and removing old publishing notes
  • Move build directory from /lib to /dist
  • Updating copyright years

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.

@@ -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",
Copy link
Contributor

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

@@ -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"
Copy link
Contributor

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

Copy link
Contributor

@leoraba leoraba left a 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

@joneubank joneubank requested a review from leoraba June 11, 2024 01:54
@joneubank joneubank merged commit 96fd13c into develop Jun 11, 2024
2 checks passed
@joneubank joneubank deleted the feat/add-client-to-mono-repo branch June 11, 2024 13:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants