monorepotime 1.1.7 → 1.1.9
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 +24 -7
- package/dist/index.js +594 -331
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -3,15 +3,33 @@
|
|
|
3
3
|
|
|
4
4
|
## Installation
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Install as a dev dependency in your project:
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
|
-
|
|
9
|
+
npm install -D monorepotime
|
|
10
10
|
```
|
|
11
|
-
|
|
11
|
+
|
|
12
|
+
Then initialize it in your project:
|
|
13
|
+
|
|
12
14
|
```bash
|
|
13
|
-
|
|
14
|
-
|
|
15
|
+
npx monorepotime init
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
This will add the following script to your `package.json`:
|
|
19
|
+
|
|
20
|
+
```json
|
|
21
|
+
{
|
|
22
|
+
"packageManager": "npm@<the version of you package manager>",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"monorepotime": "monorepotime"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Now you can run it with:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm run monorepotime
|
|
15
33
|
```
|
|
16
34
|
|
|
17
35
|
This will:
|
|
@@ -19,7 +37,6 @@ This will:
|
|
|
19
37
|
2. Open the dashboard in your default browser.
|
|
20
38
|
3. Allow you to interact with your workspaces immediately.
|
|
21
39
|
|
|
22
|
-
|
|
23
40
|
## License
|
|
24
41
|
|
|
25
|
-
ISC © [Anghelo Amir](https://github.com/AngheloAmir)
|
|
42
|
+
ISC © [Anghelo Amir](https://github.com/AngheloAmir/Monorepo-Time)
|