Skip to content

Commit cf37e18

Browse files
phatedactions-user
authored andcommitted
chore: Run prettier
1 parent ca5115e commit cf37e18

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Hack on your project easily. A [liftoff](https://github.com/gulpjs/liftoff) proo
1818
4. The rest is up to you.
1919

2020
#### Options
21+
2122
- `--cwd` specify the working directory to run hacker
2223
- `--hackerfile` specify an exact hackerfile path
2324
- `--require` require an external module before loading your hackerfile
@@ -26,18 +27,22 @@ Hack on your project easily. A [liftoff](https://github.com/gulpjs/liftoff) proo
2627
### Examples
2728

2829
#### Hackerfile.js
30+
2931
```js
3032
var fs = require('fs');
31-
fs.writeFileSync('tmp','i will be written relative to this file, always.');
33+
fs.writeFileSync('tmp', 'i will be written relative to this file, always.');
3234
```
35+
3336
To run:
3437
`hacker`
3538

3639
#### Hackerfile.coffee
40+
3741
```coffeescript
3842
fs = require 'fs'
3943
fs.writeFileSync 'tmp', 'i will be written relative to this file, always.'
4044
```
45+
4146
To run:
4247
`hacker`
4348

0 commit comments

Comments
 (0)