Skip to content
Merged
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
15 changes: 0 additions & 15 deletions docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ React Native CLI comes with following commands:
- [`init`](#init)
- [`info`](#info)
- [`install`](#install)
- [`library`](#library)
- [`link`](#link)
- [`log-android`](#log-android)
- [`log-ios`](#log-ios)
Expand Down Expand Up @@ -188,20 +187,6 @@ react-native install <packageName>

Installs single package from npm and then links native dependencies. If `install` detects `yarn.lock` in your project, it will use Yarn as package manager. Otherwise `npm` will be used.

### `library`

Usage:

```sh
react-native library <options>
```

Generates a native library bridge.

#### `--name <string>`

Name of the library to generate.

### `link`

> Will be replaced by [autolinking](./autolinking.md) soon.
Expand Down
2 changes: 0 additions & 2 deletions packages/cli/src/commands/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import {type CommandT} from 'types';

import server from './server/server';
import library from './library/library';
import bundle from './bundle/bundle';
import ramBundle from './bundle/ramBundle';
import link from './link/link';
Expand All @@ -18,7 +17,6 @@ import init from './init';

export default ([
server,
library,
bundle,
ramBundle,
link,
Expand Down
78 changes: 0 additions & 78 deletions packages/cli/src/commands/library/library.js

This file was deleted.