@monerium/sdk 1.0.12 → 1.0.19
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/.github/workflows/release-please.yml +5 -1
- package/CHANGELOG.md +49 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/yarn-error.log +0 -2461
|
@@ -23,10 +23,14 @@ jobs:
|
|
|
23
23
|
registry-url: 'https://registry.npmjs.org'
|
|
24
24
|
scope: '@monerium'
|
|
25
25
|
if: ${{ steps.release.outputs.release_created }}
|
|
26
|
-
- run:
|
|
26
|
+
- run: npm ci
|
|
27
27
|
if: ${{ steps.release.outputs.release_created }}
|
|
28
28
|
- run: |
|
|
29
|
+
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
|
|
30
|
+
npm config set scope "@monerium"
|
|
31
|
+
npm config list
|
|
29
32
|
npm publish --access=public
|
|
33
|
+
npm login --registry=https://registry.npmjs.org --scope=@monerium
|
|
30
34
|
env:
|
|
31
35
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
|
32
36
|
if: ${{ steps.release.outputs.release_created }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.19](https://github.com/monerium/sdk/compare/v1.0.18...v1.0.19) (2022-10-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **automated-publish:** tried adding a new npm token ([ec99f13](https://github.com/monerium/sdk/commit/ec99f1395f8285f5730f02b19a12e0d45dbe2197))
|
|
9
|
+
|
|
10
|
+
## [1.0.18](https://github.com/monerium/sdk/compare/v1.0.17...v1.0.18) (2022-10-12)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **automated-publish:** try adding scope to npmrc ([6d965ca](https://github.com/monerium/sdk/commit/6d965ca8e393e97178895da5f8bbd94608f3ea2d))
|
|
16
|
+
|
|
17
|
+
## [1.0.17](https://github.com/monerium/sdk/compare/v1.0.16...v1.0.17) (2022-10-12)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **automated-publish:** use npm instead of yarn ([5da46ae](https://github.com/monerium/sdk/commit/5da46ae84fdca9a4258eff0e0aa24e5285a77786))
|
|
23
|
+
|
|
24
|
+
## [1.0.16](https://github.com/monerium/sdk/compare/v1.0.15...v1.0.16) (2022-10-12)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* **automated-publish:** im just doing something at this point, hoping to get a different result ([7465711](https://github.com/monerium/sdk/commit/7465711b68904a35f38d9b9b423dd0557acb4e62))
|
|
30
|
+
|
|
31
|
+
## [1.0.15](https://github.com/monerium/sdk/compare/v1.0.14...v1.0.15) (2022-10-12)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
* **automated-publish:** try setting scope and authToken in action, ugh ([4dcf78c](https://github.com/monerium/sdk/commit/4dcf78c5bdd47a1fb0d69e56e2b3767bd290bc0f))
|
|
37
|
+
|
|
38
|
+
## [1.0.14](https://github.com/monerium/sdk/compare/v1.0.13...v1.0.14) (2022-10-12)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Bug Fixes
|
|
42
|
+
|
|
43
|
+
* typo to trigger rebuild ([3e1ad6a](https://github.com/monerium/sdk/commit/3e1ad6a4d883035be700bddd35b9a76ca06b6944))
|
|
44
|
+
|
|
45
|
+
## [1.0.13](https://github.com/monerium/sdk/compare/v1.0.12...v1.0.13) (2022-10-12)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Bug Fixes
|
|
49
|
+
|
|
50
|
+
* **automated-publish:** push to npm registry, yarn doesnt seem to work ([1d97f2c](https://github.com/monerium/sdk/commit/1d97f2c926b82976a8751808eb6816aade35a949))
|
|
51
|
+
|
|
3
52
|
## [1.0.12](https://github.com/monerium/sdk/compare/v1.0.11...v1.0.12) (2022-10-12)
|
|
4
53
|
|
|
5
54
|
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Everything you need to interact with the Monerium API - An electronic money issuer.
|
|
4
4
|
|
|
5
|
-
_This package is in development. Please make sure to check if any future updates contain commits that may change the
|
|
5
|
+
_This package is in development. Please make sure to check if any future updates contain commits that may change the behavior of your application before you upgrade._
|
|
6
6
|
|
|
7
7
|
## Authentication
|
|
8
8
|
|