Skip to content

Commit 3f3875d

Browse files
Bump prettier from 1.18.2 to 1.19.1 (#25)
1 parent b0234b4 commit 3f3875d

3 files changed

Lines changed: 16 additions & 7 deletions

File tree

lib/__tests__/find-properties.js

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,13 @@ describe('findAttributeBindings()', () => {
6262
const TESTS = [
6363
['', new Map()],
6464
["attributeBindings: ['foo']", new Map([['foo', 'foo']])],
65-
["attributeBindings: ['foo:bar', 'BAZ']", new Map([['bar', 'foo'], ['BAZ', 'BAZ']])],
65+
[
66+
"attributeBindings: ['foo:bar', 'BAZ']",
67+
new Map([
68+
['bar', 'foo'],
69+
['BAZ', 'BAZ'],
70+
]),
71+
],
6672
["attributeBindings: ''", /Unexpected `attributeBindings` value: ''/],
6773
['attributeBindings: 5', /Unexpected `attributeBindings` value: 5/],
6874
['attributeBindings: foo', /Unexpected `attributeBindings` value: foo/],
@@ -122,7 +128,10 @@ describe('findClassNameBindings()', () => {
122128
["classNameBindings: ['foo::baz']", new Map([['foo', [null, 'baz']]])],
123129
[
124130
"classNameBindings: ['foo:foo', 'bar:bar']",
125-
new Map([['foo', ['foo', null]], ['bar', ['bar', null]]]),
131+
new Map([
132+
['foo', ['foo', null]],
133+
['bar', ['bar', null]],
134+
]),
126135
],
127136
["classNameBindings: ''", /Unexpected `classNameBindings` value: ''/],
128137
['classNameBindings: 5', /Unexpected `classNameBindings` value: 5/],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"eslint-plugin-prettier": "^3.1.2",
3030
"jest": "^24.9.0",
3131
"lerna-changelog": "^1.0.0",
32-
"prettier": "1.18.2"
32+
"prettier": "1.19.1"
3333
},
3434
"engines": {
3535
"node": "10.* || >= 12.*"

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4383,10 +4383,10 @@ prettier-linter-helpers@^1.0.0:
43834383
dependencies:
43844384
fast-diff "^1.1.2"
43854385

4386-
prettier@1.18.2:
4387-
version "1.18.2"
4388-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea"
4389-
integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==
4386+
prettier@1.19.1:
4387+
version "1.19.1"
4388+
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
4389+
integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
43904390

43914391
pretty-format@^24.9.0:
43924392
version "24.9.0"

0 commit comments

Comments
 (0)