Skip to content

Commit 0e93344

Browse files
committed
badge
1 parent bc6a92f commit 0e93344

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# fallback to using the latest cache if no exact match is found
2727
- v1-dependencies-
2828

29-
- run: npm install
29+
- run: yarn
3030

3131
- save_cache:
3232
paths:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"unit-test": "jest",
8989
"fmt": "prettier --write \"src/**/*.js\"",
9090
"stylelint": "stylelint src/**/*.js",
91-
"flow": "./node_modules/.bin/flow"
91+
"typecheck": "./node_modules/.bin/flow"
9292
},
9393
"jest": {
9494
"setupFiles": [

src/components/Work/Project.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { WithDispatch } from "@src/store";
77
import * as Types from "@src/types";
88
import * as ProjectActions from "./actions";
99
//import * as SharedActions from "@src/components/Shared/actions";
10-
import Nervous, { type NervousPoint } from "./nervous";
10+
import Nervous, { type NervousPoint } from "./Nervous";
1111
import { breakLg, colors } from "@src/styles";
1212
import { withRouter, type WithRouter } from "react-router-dom";
1313

0 commit comments

Comments
 (0)