Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: prettier/prettier
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.14.2
Choose a base ref
...
head repository: prettier/prettier
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.14.3
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Sep 19, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    renovate-bot Mend Renovate
    Copy the full SHA
    f938ccd View commit details
  2. chore(release): 1.14.3

    ikatyang committed Sep 19, 2018
    Copy the full SHA
    f92aebe View commit details
Showing with 10 additions and 3 deletions.
  1. +1 −1 .github/ISSUE_TEMPLATE/formatting.md
  2. +1 −1 .github/ISSUE_TEMPLATE/integration.md
  3. +6 −0 CHANGELOG.md
  4. +1 −1 package.json
  5. +1 −0 scripts/build/build.js
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/formatting.md
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ Tip! Don't write this stuff manually.
-->

**Prettier 1.14.2**
**Prettier 1.14.3**
[Playground link](https://prettier.io/playground/#.....)
```sh
# Options (if any):
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/integration.md
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ BEFORE SUBMITTING AN ISSUE:
-->

**Environments:**
- Prettier Version: 1.14.2
- Prettier Version: 1.14.3
- Running Prettier via: <!-- CLI, Node.js API, Browser API, etc. -->
- Runtime: <!-- Node.js v6, Chrome v67, etc. -->
- Operating System: <!-- Windows, Linux, macOS, etc. -->
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.14.3

[diff](https://github.com/prettier/prettier/compare/1.14.2...1.14.3)

- Chore: add missing LICENSE ([#5114](https://github.com/prettier/prettier/pull/5114))

# 1.14.2

[diff](https://github.com/prettier/prettier/compare/1.14.1...1.14.2)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prettier",
"version": "1.14.2",
"version": "1.14.3",
"description": "Prettier is an opinionated code formatter",
"bin": {
"prettier": "./bin/prettier.js"
1 change: 1 addition & 0 deletions scripts/build/build.js
Original file line number Diff line number Diff line change
@@ -88,6 +88,7 @@ async function preparePackage() {
await util.writeJson("dist/package.json", pkg);

await util.copyFile("./README.md", "./dist/README.md");
await util.copyFile("./LICENSE", "./dist/LICENSE");
}

async function run(params) {