Skip to content

Commit

Permalink
build(deps): upgrade to prettier v2 (#334)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: prettier 2 is now required
  • Loading branch information
hamzahamidi committed Jun 7, 2020
1 parent f37c9fb commit 491c8d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -25,7 +25,7 @@
"indent-string": "^4.0.0",
"lodash.merge": "^4.6.0",
"loglevel-colored-level-prefix": "^1.0.0",
"prettier": "^1.7.0",
"prettier": "^2.0.0",
"pretty-format": "^23.0.1",
"require-relative": "^0.8.7",
"typescript": "^3.9.3",
Expand Down
5 changes: 5 additions & 0 deletions src/index.js
@@ -1,5 +1,10 @@
/* eslint no-console:0, global-require:0, import/no-dynamic-require:0 */
/* eslint complexity: [1, 13] */

// Add node 8 polyfills, to be removed if we decide to let go node 8 support
import 'core-js/modules/es.string.trim-start'; // eslint-disable-line
import 'core-js/modules/es.string.trim-end'; // eslint-disable-line

import fs from 'fs';
import path from 'path';
import requireRelative from 'require-relative';
Expand Down

0 comments on commit 491c8d8

Please sign in to comment.