Skip to content

Commit

Permalink
Merge pull request #65 from kitsuyui/chores
Browse files Browse the repository at this point in the history
chores
  • Loading branch information
kitsuyui authored May 24, 2023
2 parents 6de408c + 49901a7 commit da1ea21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions packages/clock/src/digital.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ import React from 'react'

import { ClockProps } from './types'

export const DigitalClock: React.FunctionComponent<ClockProps> = (
props
): JSX.Element => {
export const DigitalClock: React.FC<ClockProps> = (props): JSX.Element => {
const { timezone, date } = props
const datetime = DateTime.fromJSDate(date)
const dt = datetime.setZone(timezone)
Expand Down
2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"build": {
"dependsOn": ["^build"],
"outputs": ["build/**"]
"outputs": ["examples/simple/build/**", "packages/*/dist/**"]
},
"test": {
"dependsOn": ["^test"]
Expand Down

0 comments on commit da1ea21

Please sign in to comment.