@jupiterdo/sdk 0.1.1 → 0.1.2
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 +2 -42
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,46 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
JavaScript SDK for integrating Jupiter payments in your web application.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Documentation
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
cd sdk
|
|
11
|
-
npm run build
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
```bash
|
|
15
|
-
# Bump version automatically
|
|
16
|
-
npm version patch # 0.1.0 → 0.1.1
|
|
17
|
-
npm version minor # 0.1.0 → 0.2.0
|
|
18
|
-
npm version major # 0.1.0 → 1.0.0
|
|
19
|
-
|
|
20
|
-
# Then publish
|
|
21
|
-
npm publish
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
Verify publication.
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
# Check on npm
|
|
28
|
-
npm view @jupiterdo/sdk
|
|
29
|
-
|
|
30
|
-
# Or visit
|
|
31
|
-
# https://www.npmjs.com/package/@jupiterdo/sdk
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
## Making Package Available on CDNs
|
|
35
|
-
|
|
36
|
-
#### **jsDelivr**
|
|
37
|
-
|
|
38
|
-
```html
|
|
39
|
-
<!-- Latest version -->
|
|
40
|
-
<script src="https://cdn.jsdelivr.net/npm/@jupiterdo/sdk"></script>
|
|
41
|
-
|
|
42
|
-
<!-- Specific version -->
|
|
43
|
-
<script src="https://cdn.jsdelivr.net/npm/@jupiterdo/sdk@0.1.0"></script>
|
|
44
|
-
|
|
45
|
-
<!-- Specific file (minified) -->
|
|
46
|
-
<script src="https://cdn.jsdelivr.net/npm/@jupiterdo/sdk@0.1.0/dist/index.umd.min.js"></script>
|
|
47
|
-
```
|
|
7
|
+
You can learn how to use our sdk [here](https://www.jupiter.do/developers/sdk).
|