@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.
Files changed (2) hide show
  1. package/README.md +13 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,15 @@
1
- # Usage
2
- ```bash
3
- npm i git+ssh://git@github.com/eklinkhammer/eld-schemas.git
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
- # Changes
7
- Don't forget to change the version.
12
+ npm login
13
+ npm publish --access public
14
+ git push && git push --tags
15
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@findatruck/shared-schemas",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",