@monerium/sdk 1.0.4 → 1.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/.github/workflows/release-please.yml +3 -2
- package/CHANGELOG.md +28 -0
- package/README.md +1 -1
- package/package.json +9 -2
|
@@ -20,11 +20,12 @@ jobs:
|
|
|
20
20
|
- uses: actions/setup-node@v1
|
|
21
21
|
with:
|
|
22
22
|
node-version: 18
|
|
23
|
-
registry-url: 'https://registry.
|
|
23
|
+
registry-url: 'https://registry.yarnpkg.com'
|
|
24
|
+
scope: '@monerium'
|
|
24
25
|
if: ${{ steps.release.outputs.release_created }}
|
|
25
26
|
- run: yarn install --frozen-lockfile
|
|
26
27
|
if: ${{ steps.release.outputs.release_created }}
|
|
27
|
-
- run: yarn publish
|
|
28
|
+
- run: yarn publish --access=public
|
|
28
29
|
env:
|
|
29
30
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
|
30
31
|
if: ${{ steps.release.outputs.release_created }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.7](https://github.com/monerium/sdk/compare/v1.0.6...v1.0.7) (2022-10-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* pipeline still failing, try adding access as public and include registry in package.json ([a798cb0](https://github.com/monerium/sdk/commit/a798cb0a96dcc8c1f07909cd01678db52daa9925))
|
|
9
|
+
|
|
10
|
+
## [1.0.6](https://github.com/monerium/sdk/compare/v1.0.5...v1.0.6) (2022-10-12)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* add the correct registry-url ([1ace305](https://github.com/monerium/sdk/commit/1ace30584efc3fc1cd85e47eaaae6030d01eff98))
|
|
16
|
+
|
|
17
|
+
## [1.0.5](https://github.com/monerium/sdk/compare/v1.0.4...v1.0.5) (2022-10-12)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* add any comment to trigger an automated publish ([d64bce4](https://github.com/monerium/sdk/commit/d64bce48b6b241f76232b79d097b507367ccad3e))
|
|
23
|
+
|
|
24
|
+
## [1.0.4](https://github.com/monerium/sdk/compare/v1.0.3...v1.0.4) (2022-10-12)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* bump node version to 18 to be compatible with Svelte ([58dd71c](https://github.com/monerium/sdk/commit/58dd71c489eeb531d7f91a0d359d6bc4b3e50950))
|
|
30
|
+
|
|
3
31
|
## [1.0.3](https://github.com/monerium/sdk/compare/v1.0.2...v1.0.3) (2022-10-12)
|
|
4
32
|
|
|
5
33
|
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @monerium/sdk
|
|
2
2
|
|
|
3
|
-
Everything you need to interact with Monerium.
|
|
3
|
+
Everything you need to interact with the Monerium API - An electronic money issuer.
|
|
4
4
|
|
|
5
5
|
_This package is in development. Please make sure to check if any future updates contain commits that may change the behaviour of your application before you upgrade._
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monerium/sdk",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public",
|
|
6
|
+
"@monerium:registry": "https://registry.yarnpkg.com/"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/monerium/sdk.git"
|
|
11
|
+
},
|
|
5
12
|
"scripts": {
|
|
6
13
|
"dev": "vite dev",
|
|
7
14
|
"test": "vitest",
|