monoverse 0.0.1
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 +7 -0
- package/build/cli.js +95709 -0
- package/build/index.js +58524 -0
- package/package.json +67 -0
- package/public/android-chrome-192x192.png +0 -0
- package/public/android-chrome-512x512.png +0 -0
- package/public/apple-touch-icon.png +0 -0
- package/public/build/_assets/app-SFFX2L34.css +1 -0
- package/public/build/_shared/chunk-G5WX4PPA.js +1 -0
- package/public/build/_shared/chunk-HPSR2AHZ.js +1 -0
- package/public/build/_shared/chunk-TXYGHBXU.js +32 -0
- package/public/build/_shared/chunk-V6X5C2NK.js +249 -0
- package/public/build/entry.client-AWWPRTQT.js +1 -0
- package/public/build/manifest-0EE514D5.js +1 -0
- package/public/build/root-PL2IURVO.js +1 -0
- package/public/build/routes/_index-IU7UKDFR.js +128 -0
- package/public/build/routes/api._index-EY2TJEVA.js +1 -0
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/fonts/roboto-flex-v9-latin-regular.woff2 +0 -0
package/Readme.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Monorepo tools 🚀
|
|
2
|
+
|
|
3
|
+
## Concepts.
|
|
4
|
+
|
|
5
|
+
1. A `monorepo` is collection of workspaces. A `workspace` conceptually could be any app/package.
|
|
6
|
+
2. A `workspace` consists of a name, depedencies, devDependencies, optionalDependencies, and others.
|
|
7
|
+
3. Each dependency entry consist of package name + `versionRange`. `versionRange` could be a pinned version like "2.4.7" or a more broader "^2.3.1". Nevertheless we consider the value to be a broader versionRange.
|