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

README: Update build instructions #7695

Merged
merged 1 commit into from
Jan 18, 2024
Merged
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
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,25 @@ Make sure that you have Node.js v14 or later and a compatible npm version instal
npm install
```

1. **Build the [platform-independent part](https://github.com/surveyjs/survey-library/blob/master/build-scripts/survey-core/README.md#survey-model-platform-independent-part) and plugins**

```
npm run build_core
npm run build-plugins
```

1. **Build the library**

```
npm run build_prod
npm run build
```

You can find the built scripts and style sheets in folders under the `build` directory.

1. **Run test examples**

```
npm start
npm run serve
```

This command runs a local HTTP server at http://localhost:7777/.
Expand Down
Loading