Skip to content

Commit 9940b19

Browse files
committed
.
0 parents  commit 9940b19

File tree

5 files changed

+40
-0
lines changed

5 files changed

+40
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.log

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# `pretty-quick`
2+
3+
> Get Pretty Quick

bin/pretty-quick.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env node
2+
3+
"use strict";
4+
5+
const prettier = require('prettier');
6+
const mri = require('mri');
7+
8+
const args = mri(process.argv.slice(2));
9+

package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "pretty-quick",
3+
"version": "0.0.0-development",
4+
"description": "Get Pretty Quick",
5+
"repository": "azz/pretty-quick",
6+
"author": "Lucas Azzola <@azz>",
7+
"bin": "./bin/pretty-quick",
8+
"license": "MIT",
9+
"dependencies": {
10+
"mri": "^1.1.0"
11+
},
12+
"peerDependencies": {
13+
"prettier": "^1.9.2"
14+
}
15+
}

yarn.lock

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
mri@^1.1.0:
6+
version "1.1.0"
7+
resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.0.tgz#5c0a3f29c8ccffbbb1ec941dcec09d71fa32f36a"
8+
9+
prettier@^1.9.2:
10+
version "1.9.2"
11+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.9.2.tgz#96bc2132f7a32338e6078aeb29727178c6335827"

0 commit comments

Comments
 (0)