dash-platform-sdk 1.0.0 → 1.0.1

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.
@@ -1,9 +1,9 @@
1
- name: Publish Package to NPM
1
+ name: Publish package to NPM
2
2
  on:
3
3
  release:
4
4
  types: [published]
5
5
  jobs:
6
- publish:
6
+ build:
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
9
  - uses: actions/checkout@v4
@@ -13,6 +13,8 @@ jobs:
13
13
  node-version: '20.x'
14
14
  registry-url: 'https://registry.npmjs.org'
15
15
  - run: yarn
16
- - run: yarn npm publish // for Yarn version 1, use `yarn publish` instead
16
+ - run: yarn build:grpc
17
+ - run: yarn build
18
+ - run: yarn publish
17
19
  env:
18
20
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dash-platform-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "dist/main.js",
5
5
  "devDependencies": {
6
6
  "@babel/core": "^7.26.10",
@@ -32,6 +32,5 @@
32
32
  "dependencies": {
33
33
  "@scure/base": "^1.2.4",
34
34
  "cbor": "^10.0.3"
35
- },
36
- "packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
35
+ }
37
36
  }
@@ -1,12 +0,0 @@
1
- /*!
2
- * The buffer module from node.js, for the browser.
3
- *
4
- * @author Feross Aboukhadijeh <https://feross.org>
5
- * @license MIT
6
- */
7
-
8
- /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
9
-
10
- /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
11
-
12
- /*! scure-base - MIT License (c) 2022 Paul Miller (paulmillr.com) */