Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Update README.md #15

Open
wants to merge 1 commit into
base: release
Choose a base branch
from
Open
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
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,30 @@ This is a fork of [`react-beautiful-dnd`](https://github.com/atlassian/react-bea
}
}
```


## To Build

```
npm i

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should make this npm ci so it installs from the lock file versus the package.json file and will keep the dependencies consistent.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, any reason we're doing npm here and yarn down below?

npm run-script build
```

## Instructions

To run this repo's code within `app`:

in this repo's directory:
```
yarn link
```

in the `app` repo directory:
```
yarn link "react-beautiful-dnd"
yarn && yarn start
```

**Tip:** To check if `app` is actually using this repo's code, add a `console.log` to `src/index.js` and see if it prints.

As of May 11, 2022: Working in Node 16 but _not_ in Node 17