Notice:
yis the alias foryarn,nis the alias fornpm.
Install dev deps after git clone the repo.
$ yBootstrap every package with yarn. (Need to execute when new package is included)
$ y bootstrapLink umi globally.
$ cd packages/umi
$ y linkMonitor file changes and transform with babel.
$ y build --watchRun test.
# Including e2e test
$ y test
# Unit test only
$ y debug .test.(t|j)s
# Test specified file and watch
$ y debug getMockData.test.js -w
# Test specified package
$ PACKAGE=umi-mock y debug
# Don't run e2e test
$ E2E=none y debug
# Generate coverage
$ y debug --coverageRun umi dev in examples/func-test.
$ cd examples/func-test
$ umi devThen open http://localhost:8000/ in your browser.
Run umi build in examples/simple.
$ cd examples/func-test
$ umi build
# Build without compress
$ COMPRESS=none umi buildPublish to npm.
# Generator the changelog first.
$ y changelog
# Do not use yarn for this command.
$ n run publishDebug doc in local.
$ y doc:devDeploy doc to umijs.org.
$ y doc:deployDebug umi ui in local.
# First, run umi dev --watch to start static dev server: http://localhost:8002/
$ y ui:build --watchIf the server starts on a different port, such as 8003 or 8004, this is because another process is currently running on port 8002.
It's a better idea to find the running process and kill it.
# Mac/Linux:
$ lsof -i tcp:3000
# Find the ID of the process
$ kill <process id>
# Windows
$ netstat -ano | findstr :3000
# Find the ID of the process
$ taskkill /PID typeyourPIDhere /FThen,
# Then run umi ui under a umi project.
$ LOCAL_DEBUG=1 umi ui
# if want to debug for more defail, using
$ LOCAL_DEBUG=1 DEBUG=umiui:UmiUI* umi ui
# Or Run `umi dev --ui` in examples/func-test.
$ umi dev --ui
PR rebase automatically using /rebase comment.
