@galacticcouncil/sdk 0.0.7 → 0.0.8

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 CHANGED
@@ -101,10 +101,33 @@ Component list and current status ⬇️
101
101
  | Omni | Math | 🧪 |
102
102
  | Omni | Pool | 🧪 |
103
103
  | LBP | Math | 🧪 |
104
- | LBP | Pool | 🛠 |
104
+ | LBP | Pool | 🛠 |
105
105
  | Stable | Math | ⏳ |
106
106
  | Stable | Pool | ⏳ |
107
107
 
108
+ ## Development and Build
109
+
110
+ ### Requirements
111
+
112
+ - [Node.js](https://nodejs.org/) (**version 18 or higher**)
113
+
114
+ ### Build & Release
115
+
116
+ ```sh
117
+ npm install # to install all dependencies
118
+ npm run pckg:release # to release patch version (default)
119
+ npm run pckg:publish # to publish npm package
120
+ ```
121
+
122
+ #### Other
123
+
124
+ To release minor or major version of the SDK use following commands.
125
+
126
+ ```sh
127
+ npm run pckg:release -- --release-as minor # Release minor version. E.g. 1.0.23 -> 1.1.0
128
+ npm run pckg:release -- --release-as major # Release major version. E.g. 1.0.23 -> 2.0.0
129
+ ```
130
+
108
131
  ## Issue reporting
109
132
 
110
133
  In case of unexpected sdk behaviour, please create well-written issue [here](https://https://github.com/galacticcouncil/sdk/issues/new). It makes it easier to find & fix the problem accordingly.