We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
├── LICENSE ├── README.md ├── demos ├── dist ├── docs ├── mock ├── package.json ├── scripts 工程化脚本 │ ├── build-prepare-production.sh │ ├── build-prepare-test.sh │ ├── build.sh │ ├── publish-docs.sh │ ├── publish-package.sh │ ├── release-production.sh │ ├── release-test.sh │ └── release.sh ├── server.js express 启动文件 ├── src │ ├── assets css,图片等静态资源 │ ├── common 公共 utils 配置 │ ├── components 组件 │ └── index.js ├── test ├── webpack-build.config.js ├── webpack-common-loaders.js ├── webpack-dev.config.js └── yarn.lock
The text was updated successfully, but these errors were encountered:
No branches or pull requests
前端项目交接规范
交接中关心的五大问题
1.如何进行开发?
2.如何发布?
3.有没有什么难点?
4.后端谁负责?
5.测试谁负责?
The text was updated successfully, but these errors were encountered: