Skip to content

Commit

Permalink
chore(monorepo): remove prefix in folders
Browse files Browse the repository at this point in the history
  • Loading branch information
Novout committed Apr 24, 2023
1 parent 2dc3e47 commit 9d5f6f3
Show file tree
Hide file tree
Showing 701 changed files with 18 additions and 38 deletions.
22 changes: 1 addition & 21 deletions docs/TOOLING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,7 @@ When the project perspective began to expand, the need to bring a robust tooling

This architecture was adopted halfway through the project's development, necessitated by new tools attached directly to the application and the lack of a plugin system for the internal application, limiting large amounts of code to the framework's hook.

To create a satisfactory development and production sequence with [Yarn Workspaces](https://classic.yarnpkg.com/lang/en/docs/workspaces/), [Lerna](https://lerna.js.org/) and [TurboRepo](https://turbo.build/) were chosen. The following is an example of the build sequence of the project as a whole.

### Monorepo Structure

```txt
├── better-write-app # Application
├── better-write-contenteditable-ast # AST of editor inserts (bold, italics, underline...)
├── better-write-extension # Project Extension .bw
├── better-write-google-fonts-api # Google Fonts API requests for PDF Generator.
├── better-write-image-conversor # Convert .svg to .png and other utils
├── better-write-languages # i18n
├── better-write-plugin-annotations # Annotations Plugin
├── better-write-plugin-core # Plugin Core
├── better-write-plugin-exporter-docx # DOCX Generator Plugin
├── better-write-plugin-exporter-html # HTML Generator Plugin
├── better-write-plugin-exporter-pdf # PDF Generator Plugin
├── better-write-plugin-exporter-txt # TXT Generator Plugin
|── better-write-plugin-importer # Importer external files
├── better-write-plugin-theme # Multi-Theme Plugin
├── better-write-types # Typescript All Types
```
To create a satisfactory development and production sequence with [Yarn Workspaces](https://classic.yarnpkg.com/lang/en/docs/workspaces/) and [Lerna](https://lerna.js.org/) were chosen. The following is an example of the build sequence of the project as a whole.

### Monorepo Build Flow

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
"better-write-plugin-exporter-pdf": "^1.1.15",
"better-write-plugin-exporter-txt": "^1.1.15",
"better-write-plugin-importer": "^1.1.15",
"better-write-plugin-liveshare": "^1.1.15",
"better-write-plugin-multiplayer": "^1.1.15",
"better-write-plugin-progress-bar": "^1.1.15",
"better-write-plugin-oauth": "^1.1.15",
"better-write-plugin-auth": "^1.1.15",
"better-write-plugin-shortcuts": "^1.1.15",
"better-write-plugin-theme": "^1.1.15",
"better-write-plugin-voice-typing": "^1.1.15",
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
import { CharactersPlugin } from 'better-write-plugin-characters'
import { ProgressBarPlugin } from 'better-write-plugin-progress-bar'
import { EditorWindowPlugin } from 'better-write-plugin-editor-window'
import { LivesharePlugin } from 'better-write-plugin-liveshare'
import { OAuthPlugin } from 'better-write-plugin-oauth'
import { MultiplayerPlugin } from 'better-write-plugin-multiplayer'
import { AuthPlugin } from 'better-write-plugin-auth'
useStart([
ThemePlugin(),
Expand All @@ -37,7 +37,7 @@
CharactersPlugin(),
ProgressBarPlugin(),
EditorWindowPlugin(),
LivesharePlugin(),
OAuthPlugin()
MultiplayerPlugin(),
AuthPlugin()
]).init()
</script>
Loading

0 comments on commit 9d5f6f3

Please sign in to comment.