Skip to content
New issue

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

feat(builder): select your build tool #612

Draft
wants to merge 20 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,20 @@ mkdir myApp
cd myApp
```

Then run the generator. If you installed from source or GitHub,
Then run the generator:
- If you installed from a fork or from GitHub.

```bash
yo exist
```
```bash
yo exist
```

or if you installed from npm:
- If you installed from npm or from a clone of this repo.

```bash
yo @existdb/exist
```
```bash
yo @existdb/exist
```

If you are unsure about which command is right simply run `yo` to see the list of currently installed generators.

[![asciicast](https://asciinema.org/a/MqB6TyzdyBJImItHLsfC99Ufj.png)](https://asciinema.org/a/MqB6TyzdyBJImItHLsfC99Ufj)

Expand Down Expand Up @@ -264,7 +267,6 @@ Since if would be impractical to go through all possible combinations of option
│   ├── lib_demo-1.0.0-dev.xar
│   └── lib_demo-1.0.0.xar
├── build.xml
├── collection.xconf
├── expath-pkg.xml
├── node_modules
│   └── pruned …
Expand Down
Loading