Skip to content

Commit 94c5eea

Browse files
committed
update readme
1 parent 59bcc7c commit 94c5eea

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Node.Js CLI solution generator and runner for [advent of code](https://advento
88
[![codecov](https://codecov.io/gh/beakerandjake/advent-of-code-runner/branch/main/graph/badge.svg?token=MN3ZFKM7SX)](https://codecov.io/gh/beakerandjake/advent-of-code-runner)
99

1010
## :mrs_claus: Features
11-
- Quickly and easily scaffolds an empty directory, creating all required solution files (similar to create-react-app).
11+
- Quickly and easily scaffolds an empty directory, creating all required solution files.
1212
- Runs your solutions (both sync and async) and measures performance.
1313
- Downloads and caches puzzle input files.
1414
- Submits answers to advent of code.
@@ -176,19 +176,18 @@ Once you've imported a puzzle answer you will probably want to update the corres
176176

177177
**Note**: All imported puzzles are set to a runtime of 999 seconds. After importing an answer you will want to run the `solve` command for the puzzle you just imported, running the `solve` command will update the runtime to a real value.
178178

179+
Running without the `--no-confirm` flag is the default behavior. If you are importing the answer to a puzzle which already has an entry in your `aocr-data.json` file, then you will be asked to confirm overwriting this data. It shouldn't be an issue to overwrite it in the off chance that it does exist.
180+
179181
```
180182
npm run import <day> <level> <answer>
181183
```
182184

183-
Running without the `--no-confirm` flag is the default behavior. If you are importing the answer to a puzzle which already has an entry in your `aocr-data.json` file, then you will be asked to confirm overwriting this data. It shouldn't be an issue to overwrite it in the off chance that it does exist.
184-
185-
#### `--no-confirm` option
185+
Running with the `--no-confirm` flag will skip any confirmation for overwriting existing data. This option comes in handy when bulk importing answers.
186186

187187
```
188188
npm run import --no-confirm <day> <level> <answer>
189189
```
190190

191-
Running with the `--no-confirm` flag will skip any confirmation for overwriting existing data. This option comes in handy when bulk importing answers.
192191

193192

194193
#### Handling different answer types

0 commit comments

Comments
 (0)