Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/nodejs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,12 @@ jobs:
- uses: dimensiondev/github-token-action@latest
with:
registry: true
- run: npm ci
- uses: actions/cache@v2
with:
path: ~/.pnpm
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-node-
- run: sudo npm i -g pnpm
- run: npm run ci
- run: ./scripts/publish-to-github.sh
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@dimensiondev:registry=https://npm.dimension.im/
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { MetaMaskInpageProvider: MetaMaskInpageProviderV7 } = require('inpage-provider-7')
const { MetaMaskInpageProvider: MetaMaskInpageProviderV8 } = require('inpage-provider-8')
const { MetaMaskInpageProvider: MetaMaskInpageProviderV7 } = require('@dimensiondev/inpage-provider-7')
const { MetaMaskInpageProvider: MetaMaskInpageProviderV8 } = require('@dimensiondev/inpage-provider-8')
const PortStream = require('extension-port-stream')
const { detect } = require('detect-browser')
const browser = detect()
Expand Down
Loading