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

docs: fix package names #7

Merged
merged 1 commit into from
Sep 28, 2023
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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ The Dynamic Grid project is split into three packages:
To install any of the packages, simply include the following script tag in your HTML file:

```html
<script src="https://unpkg.com/{package-name}"></script>
<script src="https://unpkg.com/@mordech/{package-name}"></script>
```

Replace `{package-name}` with the name of the package you want to use (`dynamic-grid-core`, `dynamic-grid-web`, or `dynamic-grid-react`).

Alternatively, you can install the packages using `npm` or `yarn`:

```bash
npm install dynamic-grid-core
npm install dynamic-grid-web
npm install dynamic-grid-react
npm install @mordech/dynamic-grid-core
npm install @mordech/dynamic-grid-web
npm install @mordech/dynamic-grid-react
```

```bash
yarn add dynamic-grid-core
yarn add dynamic-grid-web
yarn add dynamic-grid-react
yarn add @mordech/dynamic-grid-core
yarn add @mordech/dynamic-grid-web
yarn add @mordech/dynamic-grid-react
```

## Usage
Expand Down