Skip to content

Commit

Permalink
version(actions@0.1.4): Fix Wood Recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWendelborn committed Dec 4, 2024
1 parent 57cbcb4 commit defc5a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/actions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
"sideEffects": false,
"type": "commonjs",
"types": "dist/index.d.ts",
"version": "0.1.3"
"version": "0.1.4"
}
4 changes: 4 additions & 0 deletions packages/actions/source/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { actions as _crimsonIsle } from '../data/crimson-isle.json'
import { actions as _gems } from '../data/gems.json'
import { actions as _northStars } from '../data/north-stars.json'
import { actions as _northStarsCrafts } from '../data/north-stars-crafts.json'
import { actions as _wood } from '../data/wood.json'
import { Action } from './types'

export const bits = _bits as Action[]
Expand All @@ -15,11 +16,14 @@ export const gems = _gems as Action[]
export const northStars = _northStars as Action[]
export const northStarsCrafts = _northStarsCrafts as Action[]

export const wood = _wood as Action[]

export const allActions = [
...bits,
...bitsCrafts,
...crimsonIsle,
...gems,
...northStars,
...northStarsCrafts,
...wood,
]

0 comments on commit defc5a9

Please sign in to comment.