mirror of
https://github.com/webstudio-is/webstudio.git
synced 2025-03-14 09:57:02 +00:00
## Description See readme. Project created to be able to test/develop cli app. Whats changed in cli - [x] - preview flag added (to use preview env to sownload assets) - [x] - package.json is now merged (deepmerge) when added to the repo - Next PR - [ ] - Flag like `"customConditions": ["source"],` could not work ## Steps for reproduction 1. click button 2. expect xyz ## Code Review - [ ] hi @kof, I need you to do - conceptual review (architecture, feature-correctness) - detailed review (read every line) - test it on preview ## Before requesting a review - [ ] made a self-review - [ ] added inline comments where things may be not obvious (the "why", not "what") ## Before merging - [ ] tested locally and on preview environment (preview dev login: 5de6) - [ ] updated [test cases](https://github.com/webstudio-is/webstudio/blob/main/apps/builder/docs/test-cases.md) document - [ ] added tests - [ ] if any new env variables are added, added them to `.env.example` and the `builder/env-check.js` if mandatory
22 lines
497 B
Markdown
22 lines
497 B
Markdown
# Fixture to test/play with @webstudio/cli
|
|
|
|
## How to develop
|
|
|
|
```bash
|
|
# Terminal 1
|
|
cd packages/webstudio-cli
|
|
pnpm dev
|
|
```
|
|
|
|
```bash
|
|
# Terminal 2
|
|
pnpm webstudio link
|
|
# add following link https://webstudio-builder-git-main-webstudio-is.vercel.app/builder/cddc1d44-af37-4cb6-a430-d300cf6f932d?authToken=1cdc6026-dd5b-4624-b89b-9bd45e9bcc3d&mode=preview
|
|
|
|
pnpm webstudio sync
|
|
# data.json generated
|
|
|
|
pnpm webstudio build --preview && pnpm prettier --write ./app/
|
|
# exec `pnpm run dev` to see result
|
|
```
|