monorepotime 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/dist/index.js +1081 -95
- package/package.json +9 -8
- package/dist/routes/_temp.js +0 -9
- package/dist/routes/interactiveTerminal.js +0 -145
- package/dist/routes/listworkspacedirs.js +0 -107
- package/dist/routes/newworkspace.js +0 -43
- package/dist/routes/rootPath.js +0 -36
- package/dist/routes/runcmddev.js +0 -61
- package/dist/routes/scafoldrepo.js +0 -156
- package/dist/routes/scanworkspace.js +0 -167
- package/dist/routes/stopcmd.js +0 -203
- package/dist/routes/turborepoexist.js +0 -31
- package/dist/routes/updateworkspace.js +0 -50
- package/dist/routes/vscodeHideShow.js +0 -129
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
## Monorepo Time
|
|
2
|
+
**Monorepo Time** provides a modern, interactive web interface to manage, visualize, and control your monorepo workspaces. Stop wrestling with endless terminal tabs and get a clear overview of your project structure, scripts, and build tasks.
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
|
|
6
|
+
To use it instantly without installing:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npx monorepotime
|
|
10
|
+
```
|
|
11
|
+
or
|
|
12
|
+
```bash
|
|
13
|
+
npm install -D monorepotime
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
Navigate to the root of your monorepo project and run:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
monorepotime
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
This will:
|
|
25
|
+
1. Start a local server.
|
|
26
|
+
2. Open the dashboard in your default browser.
|
|
27
|
+
3. Allow you to interact with your workspaces immediately.
|
|
28
|
+
|
|
29
|
+
## 📄 License
|
|
30
|
+
|
|
31
|
+
ISC © [Anghelo Amir](https://github.com/AngheloAmir)
|