Skip to content

Commit

Permalink
update npm to yarn
Browse files Browse the repository at this point in the history
Signed-off-by: link <haoyuli1697@gmail.com>
  • Loading branch information
link1697 committed Nov 6, 2024
1 parent a32997e commit be9c507
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion src/dashboard/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
SPDX-License-Identifier: Apache-2.0
*/
module.exports = {
parser: 'babel-eslint',
parser: '@babel/eslint-parser',
extends: ['airbnb', 'prettier', 'plugin:compat/recommended'],
env: {
browser: true,
Expand Down
28 changes: 14 additions & 14 deletions src/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"docker-prod:dev": "docker compose -f ./docker/docker-compose.yml up",
"docker:build": "docker compose -f ./docker/docker-compose.dev.yml build",
"docker:dev": "docker compose -f ./docker/docker-compose.dev.yml up",
"docker:push": "npm run docker-hub:build && npm run docker:tag && docker push antdesign/ant-design-pro",
"docker:push": "yarn docker-hub:build && yarn docker:tag && docker push antdesign/ant-design-pro",
"docker:tag": "docker tag ant-design-pro antdesign/ant-design-pro",
"functions:build": "yarn run generateMock && netlify dev",
"netlify:dev": "netlify dev",
"generateMock": "node ./scripts/generateMock",
"lint": "eslint --ext .js src mock tests && npm run lint:style && npm run lint:prettier",
"lint": "eslint --ext .js src mock tests && yarn lint:style && yarn lint:prettier",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js",
"lint:fix": "eslint --fix --ext .js src mock tests && stylelint --fix 'src/**/*.less' --syntax less",
Expand All @@ -29,7 +29,7 @@
"test": "umi test",
"test:all": "node ./tests/run-tests.js",
"test:component": "umi test ./src/components",
"tslint": "npm run tslint:fix",
"tslint": "yarn tslint:fix",
"tslint:fix": "tslint --fix 'src/**/*.ts*'"
},
"husky": {
Expand Down Expand Up @@ -90,28 +90,28 @@
"validator": "^13.7.0"
},
"devDependencies": {
"glob":"^9.0.0",
"@types/history": "^4.7.2",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.0.11",
"glob": "^9.0.0",
"@umijs/preset-react": "^1.2.2",
"antd-pro-merge-less": "^1.0.0",
"antd-theme-webpack-plugin": "^1.2.0",
"babel-eslint": "^10.0.1",
"babel-eslint": "^10.1.0",
"chalk": "^2.4.2",
"check-prettier": "^1.0.1",
"cross-env": "^5.2.0",
"cross-port-killer": "^1.0.1",
"enzyme": "^3.9.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^2.6.3",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-react": "^7.12.4",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-compat": "^3.12.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-react": "^7.32.2",
"faker": "^4.1.0",
"gh-pages": "^6.1.1",
"husky": "^4.2.5",
Expand Down
4 changes: 2 additions & 2 deletions tests/dashboard/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: '3.2'
services:
test-dashboard:
image: node:14.18
image: node:20.15
volumes:
- $ROOT_PATH/src/dashboard:/dashboard
working_dir: /dashboard
command: bash -c "npm i && npm run lint"
command: bash -c "yarn && yarn lint"

0 comments on commit be9c507

Please sign in to comment.