@findatruck/shared-schemas 0.2.0 → 0.2.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 +13 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
# Description
|
|
2
|
+
Shared data models between findatruck backend services
|
|
3
|
+
|
|
4
|
+
# Deploying
|
|
4
5
|
```
|
|
6
|
+
git add --all
|
|
7
|
+
git commit -m "feat: add NewSchema"
|
|
8
|
+
|
|
9
|
+
# choose patch / minor / major
|
|
10
|
+
npm version minor -m "chore: release"
|
|
5
11
|
|
|
6
|
-
|
|
7
|
-
|
|
12
|
+
npm login
|
|
13
|
+
npm publish --access public
|
|
14
|
+
git push && git push --tags
|
|
15
|
+
```
|