chore: package repository (#1254)
* chore: package repository * chore(ci): skip eslint-config in CIpull/1255/head
parent
7c6dfa1dbc
commit
e1e8a6626d
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
'@hono/oauth-providers': patch
|
||||
'@hono/eslint-config': patch
|
||||
'@hono/react-compat': patch
|
||||
---
|
||||
|
||||
Update package repository
|
|
@ -43,6 +43,7 @@ jobs:
|
|||
- run: yarn workspaces focus hono-middleware @hono/${{ matrix.package }}
|
||||
- run: yarn workspaces foreach --topological --recursive --from @hono/${{ matrix.package }} run publint
|
||||
- run: yarn workspace @hono/${{ matrix.package }} typecheck
|
||||
if: ${{ matrix.package != 'eslint-config' }}
|
||||
- run: yarn eslint packages/${{ matrix.package }}
|
||||
- run: yarn prettier --check . !packages packages/${{ matrix.package }}
|
||||
|
||||
|
@ -63,9 +64,9 @@ jobs:
|
|||
- run: yarn workspaces foreach --topological --recursive --from @hono/${{ matrix.package }} run build
|
||||
- run: yarn test --coverage --project @hono/${{ matrix.package }}
|
||||
id: test
|
||||
if: ${{ matrix.package != 'qwik-city' && matrix.package != 'react-compat' }}
|
||||
if: ${{ matrix.package != 'eslint-config' && matrix.package != 'qwik-city' && matrix.package != 'react-compat' }}
|
||||
- uses: codecov/codecov-action@v5
|
||||
if: ${{ matrix.package != 'qwik-city' && matrix.package != 'react-compat' }}
|
||||
if: ${{ matrix.package != 'eslint-config' && matrix.package != 'qwik-city' && matrix.package != 'react-compat' }}
|
||||
with:
|
||||
fail_ci_if_error: true
|
||||
directory: ./coverage
|
||||
|
|
|
@ -14,7 +14,8 @@
|
|||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/honojs/middleware.git"
|
||||
"url": "https://github.com/honojs/middleware.git",
|
||||
"directory": "packages/eslint-config"
|
||||
},
|
||||
"homepage": "https://github.com/honojs/middleware",
|
||||
"peerDependencies": {
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
{
|
||||
"name": "@hono/oauth-providers",
|
||||
"version": "0.8.1",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/honojs/middleware.git",
|
||||
"directory": "packages/oauth-providers"
|
||||
},
|
||||
"description": "Social login for Hono JS, integrate authentication with facebook, github, google and linkedin to your projects.",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
|
|
|
@ -4,6 +4,11 @@
|
|||
"version": "0.0.1",
|
||||
"description": "Alias of hono/jsx for replacement of React",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/honojs/middleware.git",
|
||||
"directory": "packages/react-compat"
|
||||
},
|
||||
"module": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"files": [
|
||||
|
|
Loading…
Reference in New Issue