Skip to content

Commit

Permalink
fix: cd.yml
Browse files Browse the repository at this point in the history
fix: Scrollable export
  • Loading branch information
ggazzo committed May 18, 2021
1 parent a7f9c9a commit 53d44c0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
with:
node-version: "14"
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: yarn-cache
with:
path: |
**/node_modules
.yarn/cache
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- uses: actions/cache@v2
id: yarn-cache
with:
path: |
**/node_modules
.yarn/cache
key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- run: yarn install
if: steps.yarn-cache.outputs.cache-hit != 'true'
- run: yarn run build
Expand Down
3 changes: 2 additions & 1 deletion packages/fuselage/src/components/Box/Scrollable/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ type ScrollableProps = PropsWithChildren<{
vertical?: boolean;
onScrollContent?: (touching: { top: boolean }) => void;
}>;
export const Scrollable: ForwardRefExoticComponent<ScrollableProps>;
const Scrollable: ForwardRefExoticComponent<ScrollableProps>;
export default Scrollable;
2 changes: 2 additions & 0 deletions packages/fuselage/src/components/Box/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,5 @@ type BoxProps = PropsWithChildren<{
RefAttributes<unknown>;

export const Box: ForwardRefExoticComponent<BoxProps>;

export { default as Scrollable } from './Scrollable';

0 comments on commit 53d44c0

Please sign in to comment.