Skip to content

Commit

Permalink
Move ArkData to data folder
Browse files Browse the repository at this point in the history
  • Loading branch information
hallipr committed Aug 2, 2024
1 parent fad8401 commit cf8f181
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ import { DateTime } from 'luxon'
import Trough from './types/Trough'
import type Multipliers from './types/Multipliers'
import type TroughEntry from './types/TroughEntry'
import data from './ArkData.js'
import data from './data/ArkData'

const troughs = reactive([] as Trough[])
const now = ref(DateTime.now())
Expand Down
10 changes: 5 additions & 5 deletions src/arkData.ts → src/data/ArkData.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Diet from './types/Diet'
import Food from './types/Food'
import Species from './types/Species'
import RawData from './data/RawData'
import { type TroughType } from './types/TroughType'
import Diet from '../types/Diet'
import Food from '../types/Food'
import Species from '../types/Species'
import { type TroughType } from '../types/TroughType'
import RawData from './RawData'

const food = RawData.food.reduce(
(acc, current) => {
Expand Down

0 comments on commit cf8f181

Please sign in to comment.