@science-corporation/synapse 2.2.3 → 2.2.5
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 -0
- package/dist/api/api.d.ts +4084 -4084
- package/dist/api/api.js +13869 -12429
- package/dist/api/proto.json +1654 -1654
- package/dist/device.d.ts +4 -0
- package/dist/device.d.ts.map +1 -1
- package/dist/device.js +18 -0
- package/dist/device.js.map +1 -1
- package/package.json +1 -1
- package/scripts/build.sh +5 -3
- package/scripts/postinstall.sh +17 -1
- package/src/api/api.d.ts +4084 -4084
- package/src/api/api.js +12268 -12268
- package/src/api/proto.json +542 -542
- package/src/device.ts +19 -0
- package/dist/api/api.d.ts.map +0 -1
- package/dist/api/api.js.map +0 -1
package/README.md
CHANGED
|
@@ -86,3 +86,16 @@ npm version patch # increment last part of version number
|
|
|
86
86
|
npm version minor # increment middle part
|
|
87
87
|
npm version major # increment first part
|
|
88
88
|
```
|
|
89
|
+
|
|
90
|
+
## Publishing
|
|
91
|
+
Make sure to run the build commands:
|
|
92
|
+
```
|
|
93
|
+
git submodule update --init
|
|
94
|
+
npm i
|
|
95
|
+
npm run generate
|
|
96
|
+
npm run build
|
|
97
|
+
```
|
|
98
|
+
then to publish (you need access to Science Corporation Org at npmjs.com):
|
|
99
|
+
```
|
|
100
|
+
npm publish
|
|
101
|
+
```
|