museria 0.2.35 → 0.2.36

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,7 +9,7 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  strategy:
11
11
  matrix:
12
- node-version: [10.x, 12.x, 14.x]
12
+ node-version: [12.x, 14.x, 16.x]
13
13
  steps:
14
14
  - uses: actions/checkout@v2
15
15
  - name: Run tests with ${{ matrix.node-version }}
@@ -9,7 +9,7 @@ jobs:
9
9
  - uses: actions/checkout@v2
10
10
  - uses: actions/setup-node@v1
11
11
  with:
12
- node-version: 12
12
+ node-version: 14
13
13
  - run: npm ci
14
14
  - run: npm ddp
15
15
  - run: npm run build-ci
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Museria is a decentralized music storage based on [spreadable](https://github.com/ortexx/spreadable/), [storacle](https://github.com/ortexx/storacle/) and [metastocle](https://github.com/ortexx/metastocle/).
4
4
 
5
+ There is [an article here](https://ortex.medium.com/museria-a-decentralized-music-storage-dc2041a5f196) with an explanation.
6
+
5
7
  ```javascript
6
8
  const Node = require('museria').Node;
7
9