Skip to content

Commit 1249c0d

Browse files
authored
feat: bee-js revamp (#690)
* chore: initial commit * refactor: remove unnecessary wrappers * style: add missing newline * chore: bump bee-js * chore: ignore any cast in fdp * fix: remove cid import * fix: make TextEncoder and TextDecoder available in jest * refactor: dedupe stamp ttl second conversion * refactor: use convenience methods from bee-js * feat: update to bee-js for restored ens support * fix: bump bee-js to get download fix * fix: resolve feed before downloading reference * fix: fix token displays * fix: fix token input modal error message * refactor: remove wallet balance provider * chore: remove dead code * refactor: upcoming bee js 0.15.0 (#692) * chore: initial commit * fix: do not break page when duration seconds is 0 * ci: remove cache * chore: upgrade bee-js * feat: bee-js and bee v2.6 compatibility * chore: switch upcoming/bee-js to ethersphere/bee-js
1 parent 082a8f5 commit 1249c0d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+674
-16302
lines changed

.github/workflows/check.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,7 @@ jobs:
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030

31-
## Try getting the node modules from cache, if failed npm ci
32-
- uses: actions/cache@v2
33-
id: cache-npm
34-
with:
35-
path: node_modules
36-
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
37-
restore-keys: |
38-
${{ runner.OS }}-node-${{ matrix.node-version }}-${{ env.cache-name }}-
39-
${{ runner.OS }}-node-${{ matrix.node-version }}-
40-
4131
- name: Install npm deps
42-
if: steps.cache-npm.outputs.cache-hit != 'true'
4332
run: npm ci
4433

4534
- name: Commit linting

.github/workflows/tests.yaml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,8 @@ jobs:
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727

28-
## Try getting the node modules from cache, if failed npm ci
29-
- uses: actions/cache@v2
30-
id: cache-npm
31-
with:
32-
path: node_modules
33-
key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package-lock.json') }}
34-
restore-keys: |
35-
${{ runner.OS }}-node-${{ matrix.node-version }}-${{ env.cache-name }}-
36-
${{ runner.OS }}-node-${{ matrix.node-version }}-
37-
3828
- name: Install npm deps
39-
if: steps.cache-npm.outputs.cache-hit != 'true'
4029
run: npm ci
4130

4231
- name: Run tests
4332
run: npm run test
44-
45-

0 commit comments

Comments
 (0)