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 focus hono-middleware @hono/${{ matrix.package }}
|
||||||
- run: yarn workspaces foreach --topological --recursive --from @hono/${{ matrix.package }} run publint
|
- run: yarn workspaces foreach --topological --recursive --from @hono/${{ matrix.package }} run publint
|
||||||
- run: yarn workspace @hono/${{ matrix.package }} typecheck
|
- run: yarn workspace @hono/${{ matrix.package }} typecheck
|
||||||
|
if: ${{ matrix.package != 'eslint-config' }}
|
||||||
- run: yarn eslint packages/${{ matrix.package }}
|
- run: yarn eslint packages/${{ matrix.package }}
|
||||||
- run: yarn prettier --check . !packages 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 workspaces foreach --topological --recursive --from @hono/${{ matrix.package }} run build
|
||||||
- run: yarn test --coverage --project @hono/${{ matrix.package }}
|
- run: yarn test --coverage --project @hono/${{ matrix.package }}
|
||||||
id: test
|
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
|
- 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:
|
with:
|
||||||
fail_ci_if_error: true
|
fail_ci_if_error: true
|
||||||
directory: ./coverage
|
directory: ./coverage
|
||||||
|
|
|
@ -14,7 +14,8 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"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",
|
"homepage": "https://github.com/honojs/middleware",
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "@hono/oauth-providers",
|
"name": "@hono/oauth-providers",
|
||||||
"version": "0.8.1",
|
"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.",
|
"description": "Social login for Hono JS, integrate authentication with facebook, github, google and linkedin to your projects.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|
|
@ -4,6 +4,11 @@
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "Alias of hono/jsx for replacement of React",
|
"description": "Alias of hono/jsx for replacement of React",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/honojs/middleware.git",
|
||||||
|
"directory": "packages/react-compat"
|
||||||
|
},
|
||||||
"module": "dist/index.js",
|
"module": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
|
|
Loading…
Reference in New Issue