Skip to content

Commit

Permalink
chore: release version v6.0.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bs32g1038 committed Jan 26, 2024
1 parent 298fae0 commit bdb7e77
Show file tree
Hide file tree
Showing 11 changed files with 1,626 additions and 1,487 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
mongodb-version: ['5.0']
steps:
- uses: actions/checkout@v2
Expand All @@ -27,7 +27,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm install --legacy-peer-deps
npm run build
npm run test:cov
- name: Coveralls
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/release-tag.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install lint-staged --quiet
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:20-alpine3.17
WORKDIR /code
COPY ./package.json /code
RUN npm install
RUN npm install --legacy-peer-deps
COPY . /code
RUN npm run build
FROM node:20-alpine3.17
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Besides, you may need to install ```mongodb```,before you run the application.

Operating System: Linux, OS X or Windows.

Node.js Runtime: 14.x or newer; it is recommended that you use LTS Releases.
Node.js Runtime: 20.x or newer; it is recommended that you use LTS Releases.

database: mongdb 5.x or newer;

Expand Down
3 changes: 1 addition & 2 deletions client/web/components/app-footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { useFetchConfigQuery } from '../../api';
import { Space } from 'antd';
import LogoSvg from '../logo-svg';
import bannerjpg from '@blog/client/assets/banners/1040X100.jpg';
import Image from 'next/image';

export const AppFooter = () => {
const { data: config } = useFetchConfigQuery();
Expand Down Expand Up @@ -86,7 +85,7 @@ export const AppFooter = () => {
href="https://curl.qcloud.com/Fmz3Mj1W"
style={{ position: 'relative', display: 'block', height: 62, margin: '0 auto' }}
>
<Image src={bannerjpg.src} fill={true} quality={100} alt="" />
<img src={bannerjpg.src} style={{ width: '100%' }} alt="" />
</a>
</div>
</footer>
Expand Down
Loading

0 comments on commit bdb7e77

Please sign in to comment.