From ac8e0e66846fae19b20ec49697105c02256a1bd2 Mon Sep 17 00:00:00 2001 From: Georges KABBOUCHI Date: Fri, 7 Oct 2022 20:29:00 +0300 Subject: [PATCH] wip --- .github/workflows/npm-publish.yml | 8 +++++++- README.md | 13 +++++++++++++ nuxt/package.json | 2 +- package.json | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 5dde67a..5572739 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -17,4 +17,10 @@ jobs: with: token: ${{ secrets.NPM_AUTH_TOKEN }} access: public - check-version: true \ No newline at end of file + check-version: true + - uses: JS-DevTools/npm-publish@v1 + with: + token: ${{ secrets.NPM_AUTH_TOKEN }} + access: public + check-version: true + package: ./nuxt/package.json \ No newline at end of file diff --git a/README.md b/README.md index 7bcb69b..6caef75 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,19 @@ import { Web3Provider } from "@ethersproject/providers"; const { library } = useWeb3() ``` +Nuxt 3 + +```bash +yarn add @instadapp/vue-web3-nuxt -D +``` + +``` +export default defineNuxtConfig({ + modules: [ + '@instadapp/vue-web3-nuxt' + ], +}) +```
--- diff --git a/nuxt/package.json b/nuxt/package.json index ef31478..75b20a2 100644 --- a/nuxt/package.json +++ b/nuxt/package.json @@ -1,6 +1,6 @@ { "name": "@instadapp/vue-web3-nuxt", - "version": "0.9.2", + "version": "0.9.3", "license": "MIT", "type": "module", "exports": { diff --git a/package.json b/package.json index 7f21c89..6913b6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@instadapp/vue-web3", - "version": "0.9.2", + "version": "0.9.3", "description": "Vue web3 composition api", "license": "MIT", "main": "index.js",