Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Prettier #17

Merged
merged 2 commits into from
Jul 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@


### Chore & Maintenance
* Upgrade Prettier to 1.13.7 ([#17](https://github.com/jest-community/jest-watch-typeahead/pull/17))
* New directory structure ([#14](https://github.com/jest-community/jest-watch-typeahead/pull/14))
* Move ansi-escapes to dependencies _23f22d4_
* Setup Travis and add tests ([#12](https://github.com/jest-community/jest-watch-typeahead/pull/12))
Expand Down
16 changes: 11 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@
"url": "https://github.com/jest-community/jest-watch-typeahead.git"
},
"homepage": "https://github.com/jest-community/jest-watch-typeahead",
"files": ["build/", "filename.js", "testname.js"],
"files": [
"build/",
"filename.js",
"testname.js"
],
"scripts": {
"test": "jest",
"lint": "eslint .",
"watch": "babel src -w --ignore **/*.test.js,integration -d build",
"build": "babel src --ignore **/*.test.js,integration -d build",
"prepublish": "yarn build",
"format":
"prettier --single-quote --trailing-comma all --write \"!(build)/**/*.js\""
"format": "prettier --single-quote --trailing-comma all --write \"!(build)/**/*.js\""
},
"dependencies": {
"chalk": "^2.4.1",
Expand All @@ -41,10 +44,13 @@
"eslint-plugin-prettier": "2.6.0",
"flow-bin": "^0.66.0",
"jest": "23.2.0",
"prettier": "1.11.1"
"prettier": "1.13.7"
},
"jest": {
"watchPlugins": ["<rootDir>/filename", "<rootDir>/testname"],
"watchPlugins": [
"<rootDir>/filename",
"<rootDir>/testname"
],
"snapshotSerializers": [
"<rootDir>/node_modules/pretty-format/build/plugins/convert_ansi"
],
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3346,9 +3346,9 @@ preserve@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"

prettier@1.11.1:
version "1.11.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.11.1.tgz#61e43fc4cd44e68f2b0dfc2c38cd4bb0fccdcc75"
prettier@1.13.7:
version "1.13.7"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.13.7.tgz#850f3b8af784a49a6ea2d2eaa7ed1428a34b7281"

pretty-format@^23.2.0:
version "23.2.0"
Expand Down