Skip to content

Commit 0ccac46

Browse files
committed
fix up imports/etc in add-to-device-calendar module
1 parent 9d86659 commit 0ccac46

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

modules/add-to-device-calendar/add-to-calendar.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// @flow
2+
23
import * as React from 'react'
3-
import type {EventType} from '@frogpond/event-list'
4+
import type {EventType} from '@frogpond/event-type'
45
import {addToCalendar} from './lib'
56
import delay from 'delay'
67

modules/add-to-device-calendar/lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @flow
22

3-
import type {EventType} from '@frogpond/event-list'
3+
import type {EventType} from '@frogpond/event-type'
44
import {notify} from '@frogpond/analytics'
55
import RNCalendarEvents from 'react-native-calendar-events'
66
import {Alert, Linking, Platform} from 'react-native'
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "@frogpond/add-to-device-calendar",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"author": "",
7+
"license": "ISC",
8+
"scripts": {
9+
"test": "jest"
10+
},
11+
"peerDependencies": {
12+
"react": "^16.0.0",
13+
"react-native": "^0.55.4",
14+
"react-native-calendar-events": "1.6.3"
15+
},
16+
"dependencies": {
17+
"@frogpond/analytics": "^1.0.0",
18+
"@frogpond/event-type": "^1.0.0",
19+
"delay": "4.0.1"
20+
}
21+
}

0 commit comments

Comments
 (0)