Update dependency prettier to ^2.0.5
Created by: renovate[bot]
This PR contains the following updates:
Package | Type | Update | New value | References | Sourcegraph |
---|---|---|---|---|---|
prettier (source) | devDependencies | patch | ^2.0.5 | homepage, source |
Release Notes
prettier/prettier
v2.0.5
:extend
(#7984 by @fisker)
Less: Fix formatting of // Input
.class {
&:extend(.some-class .some-other-class .some-very-loooooooooooooong-class all);
}
// Prettier 2.0.4
.class {
&:extend(
.some-class .some-other-class .some-very-loooooooooooooong-class all
);
}
// Prettier 2.0.4 (Second format)
.class {
&: extend(
.some-class .some-other-class .some-very-loooooooooooooong-class all
);
}
// Prettier 2.0.5
.class {
&:extend(
.some-class .some-other-class .some-very-loooooooooooooong-class all
);
}
resolve
if builtin require.resolve
is overridden (#8072 by @fisker)
Editor integration: Use This fixes issues that the users of Atom and WebStorm faced with 2.0.4.
Prettier now switches to using the resolve
module for resolving configuration files and plugins if it detects that require.resolve
isn't Node's builtin function (doesn't support the second argument), which happens in environments like editor extensions. To force the fallback, set the PRETTIER_FALLBACK_RESOLVE
environment variable to true
.
Renovate configuration
-
If you want to rebase/retry this PR, check this box
This PR has been generated by WhiteSource Renovate. View repository job log here.