Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
⬆️ bump prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
justinanastos committed Apr 7, 2020
1 parent 14b8679 commit 50544bf
Show file tree
Hide file tree
Showing 19 changed files with 49 additions and 757 deletions.
2 changes: 1 addition & 1 deletion .storybook/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { SpaceKitProvider } from "../src/SpaceKitProvider";
import "../reset.css";
import "../font.css";

addDecorator(story => (
addDecorator((story) => (
<SpaceKitProvider disableAnimations={isChromatic()}>
{story()}
</SpaceKitProvider>
Expand Down
2 changes: 1 addition & 1 deletion .storybook/privatePresets/ignoreTestFilesPreset.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

module.exports.webpackFinal = function webpackFinal(config) {
config.module.rules.forEach(rule => {
config.module.rules.forEach((rule) => {
if (!rule.exclude) {
rule.exclude = [];
} else if (!Array.isArray(rule.exclude)) {
Expand Down
2 changes: 1 addition & 1 deletion build-reset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ less
fontCode: fonts.mono,
},
})
.then(output => {
.then((output) => {
fs.writeFileSync("reset.css", output.css);
});
Loading

0 comments on commit 50544bf

Please sign in to comment.