UNPKG

494 BMarkdownView Raw
1### Circle CI
2Circle CI tasks creates a configuration file `(.circleci/config.yml)` in the root of your project. The tasks depends on the config file `config.json` and requires following key/value pairs.
3
4```json
5{
6 "services": ["circleci"],
7 "minNodeVersion": "12.0.0"
8}
9```
10
11To remove support for `circleci` from your project, just `npm run mrm circleci` task by removing the `circleci` keyword from the `services` array.
12
13```json
14{
15 "services": []
16}
17```
18
19```sh
20npm run mrm circleci
21```