Skip to content
This repository was archived by the owner on Sep 17, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,14 @@ $ yarn publish-local
```

This command packs the `tfjs-node` package and publishes locally through [yalc](https://github.com/whitecolor/yalc).
NOTE: Dependent packages must install this locally published package through yalc.
NOTE: Dependent packages must install this locally published package through yalc and compile the node native addon locally. In the dependent package run the following command to link local published `tfjs-node` package:

```sh
$ yalc link @tensorflow/tfjs-node
$ cd .yalc/@tensorflow/tfjs-node
$ yarn && yarn build-addon-from-source
$ cd ../../..
```

#### Run tests

Expand Down