Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
gera2ld committed Apr 1, 2024
1 parent 0609076 commit 266452c
Show file tree
Hide file tree
Showing 13 changed files with 3,358 additions and 4,763 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module.exports = {
root: true,
extends: [
require.resolve('@gera2ld/plaid/eslint'),
require.resolve('@gera2ld/plaid-common-ts/eslint'),
],
parserOptions: {
project: './tsconfig.json',
Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,24 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
persist-credentials: false
fetch-depth: 100
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '20'
- uses: marceloprado/has-changed-path@v1
id: changed-src
with:
paths: package.json src
- uses: pnpm/action-setup@v2.0.1
- uses: pnpm/action-setup@v3
if: steps.changed-src.outputs.changed == 'true'
with:
version: 7
version: 8
- name: Build docs
if: steps.changed-src.outputs.changed == 'true'
run: pnpm i && pnpm build:docs
- name: Deploy to GitHub Pages
if: steps.changed-src.outputs.changed == 'true'
uses: JamesIves/github-pages-deploy-action@4.0.0
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 7
version: 8
- run: pnpm i && pnpm publish --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
File renamed without changes.
30 changes: 13 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"author": "Gerald <[email protected]>",
"license": "ISC",
"scripts": {
"prepare": "husky install",
"dev": "rollup -wc rollup.conf.js",
"prepare": "husky",
"dev": "rollup -wc rollup.config.mjs",
"ci": "run-s lint",
"build": "run-s ci clean build:types build:js",
"format": "prettier --ignore-path .eslintignore --write --plugin-search-dir=. .",
"lint": "prettier --ignore-path .eslintignore --check --plugin-search-dir=. . && eslint --ext .ts,tsx src",
"format": "prettier --ignore-path .eslintignore --write .",
"lint": "prettier --ignore-path .eslintignore --check . && eslint --ext .ts,tsx src",
"prepublishOnly": "run-s build",
"clean": "del-cli dist types",
"build:js": "rollup -c rollup.conf.js",
"build:js": "rollup -c rollup.config.mjs",
"build:types": "tsc",
"build:docs": "typedoc src/index.ts"
},
Expand All @@ -32,19 +32,15 @@
"types"
],
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@gera2ld/plaid": "~2.5.5",
"@gera2ld/plaid-common-ts": "~2.5.1",
"@gera2ld/plaid-rollup": "~2.5.0",
"del-cli": "^5.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typedoc": "^0.23.10"
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@gera2ld/plaid": "~2.7.0",
"@gera2ld/plaid-rollup": "~2.7.0",
"del-cli": "^5.1.0",
"husky": "^9.0.11",
"typedoc": "^0.25.12"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"@violentmonkey/dom": "^2.1.3"
"@babel/runtime": "^7.24.1",
"@violentmonkey/dom": "^2.1.7"
}
}
Loading

0 comments on commit 266452c

Please sign in to comment.