Skip to content

Commit cf511ec

Browse files
committed
1.10.1
1 parent bae21cb commit cf511ec

5 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Tip! Don't write this stuff manually.
88
99
-->
1010

11-
**Prettier 1.10.0**
11+
**Prettier 1.10.1**
1212
[Playground link](https://prettier.io/playground/#.....)
1313
```sh
1414
# Options (if any):

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 1.10.1
2+
3+
[link](https://github.com/prettier/prettier/compare/1.10.0...1.10.1)
4+
5+
* Fixed an issue where the CLI fails to resolve a file.
6+
7+
18
# 1.10.0
29

310
[link](https://github.com/prettier/prettier/compare/1.9.2...1.10.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prettier",
3-
"version": "1.10.0",
3+
"version": "1.10.1",
44
"description": "Prettier is an opinionated code formatter",
55
"bin": {
66
"prettier": "./bin/prettier.js"

src/cli/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const minimist = require("minimist");
44

5-
const prettier = eval("require")("../../index");
5+
const prettier = require("../../index");
66
const constant = require("./constant");
77
const util = require("./util");
88
const validator = require("./validator");

src/cli/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const chalk = require("chalk");
1111
const readline = require("readline");
1212
const leven = require("leven");
1313

14-
const prettier = eval("require")("../../index");
14+
const prettier = require("../../index");
1515
const cleanAST = require("../common/clean-ast").cleanAST;
1616
const errors = require("../common/errors");
1717
const resolver = require("../config/resolve-config");

0 commit comments

Comments
 (0)