Skip to content

Commit

Permalink
chore: update deps, update publish workflow
Browse files Browse the repository at this point in the history
update @capacitor/cli latest, typescript and vite
  • Loading branch information
yooouuri committed Aug 28, 2024
1 parent 0d90695 commit 21d36ce
Show file tree
Hide file tree
Showing 3 changed files with 1,027 additions and 829 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,15 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 18
scope: '@bistroo'
- uses: pnpm/action-setup@v2
with:
version: 8
node-version: 20
cache: 'pnpm'
- run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: pnpm install --frozen-lockfile
- run: pnpm install
- run: pnpm build
- run: pnpm publish --access public --no-git-checks
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"name": "@bistroo/vite-plugin-capacitor",
"version": "2.2.0",
"packageManager": "[email protected]",
"description": "Vite plugin for capacitor",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -33,23 +35,21 @@
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@capacitor/cli": "^5.1.0",
"@capacitor/cli": "^6.1.2",
"@types/node": "^20.11.17",
"@types/prompts": "^2.4.4",
"esbuild": "^0.17.10",
"rollup": "^3.17.2",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^4.9.5",
"vite": "^4.1.4"
"typescript": "~5.5.0",
"vite": "^5.4.2"
},
"dependencies": {
"prompts": "^2.4.2"
},
"peerDependencies": {
"@capacitor/cli": "^5.1.0"
"@capacitor/cli": "^6.1.2"
}
}
Loading

0 comments on commit 21d36ce

Please sign in to comment.