-
Notifications
You must be signed in to change notification settings - Fork 810
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] moving documentation to mkdocs.
- Loading branch information
Showing
20 changed files
with
255 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,31 @@ | ||
### Development setup | ||
|
||
`react-modal` uses `make` to build and publish new versions and documentation. | ||
|
||
It works as a checklist for the future releases to keep everything updated such as | ||
`CHANGELOG.md`, `package.json` and `bower.json` and so on. | ||
|
||
The minimun works as a normal `npm script`. | ||
The minimun works as a normal `npm` scripts. | ||
|
||
#### Usage | ||
#### [Usage](#usage) | ||
|
||
Once you clone `react-modal`, you can run `sh bootstrap.sh` to check | ||
and download dependencies not managed by `react-modal` such as `gitbook-cli`. | ||
|
||
It will also show information about the current versions of `node`, `npm`, | ||
`yarn` and `jq` available. | ||
|
||
#### List of `npm` commands: | ||
#### [List of `npm` or `yarn` commands](#npm-yarn-commands) | ||
|
||
$ npm start -s or yarn start # to run examples | ||
$ npm start | ||
$ npm run tests | ||
$ npm run lint | ||
|
||
#### List of `make` commands: | ||
#### [List of `make` commands](#make-commands) | ||
|
||
$ make help # show all make commands available | ||
$ make deps # npm install, gitbook plugins... | ||
$ make serve # to run examples | ||
$ make deps # npm install | ||
$ make serve # start a examples' web server | ||
$ make tests # use when developing | ||
$ make tests-ci # single run | ||
$ make lint # pass lint | ||
$ make lint # execute lint | ||
$ make publish # execute the entire pipeline to publish | ||
$ make publish-docs # execute the pipeline for docs |
Oops, something went wrong.