Skip to content

Commit 96e88a4

Browse files
committed
Some tweaks to documentation / readme
1 parent 37bfc80 commit 96e88a4

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

INDEX.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Oni API
2+
3+
This documents the surface area of Oni's API, which is available to both _plugins_ and _configuration_.
4+
5+
A good starting point is the [Plugin API](interfaces/plugin.api.html), which is the object passed into the `activate` methods.
6+
7+
An example `config.js` using the API object is:
8+
9+
```
10+
const activate = (oni) => {
11+
// The passed in `oni` object is an instance of the Plugin API
12+
}
13+
14+
module.exports = {
15+
activate,
16+
}
17+
```
18+
19+
Likewise, for a plugin, the entry point is an `activate` method with a [Plugin API](interfaces/plugin.api.html) object passed in.
20+
21+

README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,12 @@
33
[![npm version](https://badge.fury.io/js/oni-api.svg)](https://badge.fury.io/js/oni-api)
44

55
# oni-api
6-
Oni's extensibility model API
6+
7+
Oni's extensibility model API, along with auto-generated documentation.
8+
9+
The latest documentation is available [here](https://onivim.github.io/oni-api).
10+
11+
## Build
12+
13+
- `npm install`
14+
- `npm run build`

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"types": "lib/index.d.ts",
77
"scripts": {
88
"build:src": "rimraf lib && tsc",
9-
"build:docs": "typedoc --out docs src/index.ts --mode file",
9+
"build:docs": "typedoc --out docs src/index.ts --mode file --readme INDEX.md",
1010
"build": "npm run build:src && npm run build:docs",
1111
"test": "echo \"Error: no test specified\" && exit 1"
1212
},

0 commit comments

Comments
 (0)