mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
feat(Setup): Adds gitpod (#4753)
This commit is contained in:
parent
76d91af796
commit
2d24f3f9e7
8
.github/CONTRIBUTING.md
vendored
8
.github/CONTRIBUTING.md
vendored
@ -18,7 +18,7 @@ It's welcomed to pull request, And there are some tips about that:
|
|||||||
|
|
||||||
- When in doubt, keep your pull requests small. To give a PR the best chance of getting accepted, don't bundle more than one feature or bug fix per pull request. It's always best to create two smaller PRs than one big one.
|
- When in doubt, keep your pull requests small. To give a PR the best chance of getting accepted, don't bundle more than one feature or bug fix per pull request. It's always best to create two smaller PRs than one big one.
|
||||||
|
|
||||||
- When adding new features or modifying existing, please attempt to include tests to confirm the new behaviour.
|
- When adding new features or modifying existing, please attempt to include tests to confirm the new behaviour.
|
||||||
|
|
||||||
- Rebase before creating a PR to keep commit history clear.
|
- Rebase before creating a PR to keep commit history clear.
|
||||||
|
|
||||||
@ -37,3 +37,9 @@ npm run dev
|
|||||||
|
|
||||||
# open http://localhost:8080
|
# open http://localhost:8080
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Contribute from the browser with a single click
|
||||||
|
|
||||||
|
You can use gitpod (A free online IDE) with a single click it will launch a ready to code workspace with dependencies pre-installed and the web server running so that you don't have to waste any time on the dev setup and start contributing straight away.
|
||||||
|
|
||||||
|
[](https://gitpod.io/#https://github.com/youzan/vant)
|
||||||
|
6
.gitpod.yml
Normal file
6
.gitpod.yml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
tasks:
|
||||||
|
- init: npm run bootstrap
|
||||||
|
command: npm run dev
|
||||||
|
ports:
|
||||||
|
- port: 8080
|
||||||
|
onOpen: open-preview
|
@ -12,7 +12,8 @@ module.exports = merge(config, {
|
|||||||
open: true,
|
open: true,
|
||||||
progress: true,
|
progress: true,
|
||||||
host: '0.0.0.0',
|
host: '0.0.0.0',
|
||||||
stats: 'errors-only'
|
stats: 'errors-only',
|
||||||
|
disableHostCheck: true,
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
path: path.join(__dirname, '../docs/dist'),
|
path: path.join(__dirname, '../docs/dist'),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user