You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 年之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Ant Design Pro
  2. This project is initialized with [Ant Design Pro](https://pro.ant.design). Follow is the quick guide for how to use.
  3. ## Environment Prepare
  4. Install `node_modules`:
  5. ```bash
  6. npm install
  7. ```
  8. or
  9. ```bash
  10. yarn
  11. ```
  12. ## Provided Scripts
  13. Ant Design Pro provides some useful script to help you quick start and build with web project, code style check and test.
  14. Scripts provided in `package.json`. It's safe to modify or add additional script:
  15. ### Start project
  16. ```bash
  17. npm start
  18. ```
  19. ### Build project
  20. ```bash
  21. npm run build
  22. ```
  23. ### Check code style
  24. ```bash
  25. npm run lint
  26. ```
  27. You can also use script to auto fix some lint error:
  28. ```bash
  29. npm run lint:fix
  30. ```
  31. ### Test code
  32. ```bash
  33. npm test
  34. ```
  35. ## More
  36. You can view full document on our [official website](https://pro.ant.design). And welcome any feedback in our [github](https://github.com/ant-design/ant-design-pro).