|
|
5 lat temu | |
|---|---|---|
| .github | 5 lat temu | |
| .vscode | 5 lat temu | |
| build | 5 lat temu | |
| mock | 5 lat temu | |
| public | 5 lat temu | |
| src | 5 lat temu | |
| .editorconfig | 5 lat temu | |
| .env | 5 lat temu | |
| .env.development | 5 lat temu | |
| .env.production | 5 lat temu | |
| .eslintignore | 5 lat temu | |
| .eslintrc.js | 5 lat temu | |
| .gitignore | 5 lat temu | |
| .ls-lint.yml | 5 lat temu | |
| .prettierignore | 5 lat temu | |
| CHANGELOG.md | 5 lat temu | |
| LICENSE | 5 lat temu | |
| README.en-US.md | 5 lat temu | |
| README.md | 5 lat temu | |
| commitlint.config.js | 5 lat temu | |
| index.html | 5 lat temu | |
| lint-staged.config.js | 5 lat temu | |
| package.json | 5 lat temu | |
| postcss.config.js | 5 lat temu | |
| prettier.config.js | 5 lat temu | |
| stylelint.config.js | 5 lat temu | |
| tsconfig.json | 5 lat temu | |
| vite.config.ts | 5 lat temu | |
| yarn.lock | 5 lat temu |
The documentation for 2.0 hasn't started yet, it will be provided later.
Node.js: - Version>12.0.0 is better.yarn > npm > cnpm: - Package management tool.Git: - Tool of version managementVisual Studio Code - (VSCode): Latest version
// Make git case sensitive to file names
git config core.ignorecase false
// Pull code of the project
git clone https://github.com/anncwb/vue-vben-admin.git vue-vben-admin-2.0
cd vue-vben-admin-2.0
// If you use other package management tool, you can install it by yourself
// if you hasn't install yarn, please run: npm install -g yarn
yarn install
yarn serve
yarn build # build
yarn build:no-cache # build, cache will be removed before build
yarn report # Generate build package report preview
yarn lint:stylelint # css formatting
yarn lint:prettier # js/ts code formatting
yarn reinstall # Remove dependencies and reinstall, supported window
yarn preview # Build and preview in local
yarn log # Generate CHANGELOG
yarn clean:cache # Delete cache
yarn clean:lib # Delete node_modules, supported window
Refer to vue specifications (Angular)
feat Add new featuresfix Fix problem/BUGstyle Code style related and doesn't affect the running resultperf Optimization/performance improvementrefactor Refactorrevert Undo edittest Test relateddocs Documentation/noteschore Dependent update/scaffolding configuration modification etcworkflow Workflow improvementsci Continuous integrationtypes Update file of type definitionwip Developinggit checkout -b feat/xxxxgit commit -am 'feat(function): add xxxxx'git push origin feat/xxxxpull requestIf you have more components/functions/suggestions/bugs/, welcome to submit pr or issue.