poi-plugin-quest-info-2 0.5.5 → 0.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "poi-plugin-quest-info-2",
3
- "version": "0.5.5",
3
+ "version": "0.5.6",
4
4
  "private": false,
5
5
  "description": "show quest info",
6
6
  "homepage": "https://github.com/lawvs/poi-plugin-quest-2/",
@@ -18,18 +18,19 @@
18
18
  },
19
19
  "main": "src/index.ts",
20
20
  "scripts": {
21
- "build": "npm run convertAssets && npm run downloadKcanotifyData & npm run downloadKcQuestsData",
21
+ "build": "npm run convertAssets && npm run update",
22
22
  "build-storybook": "build-storybook",
23
23
  "clean": "rm -rf build",
24
- "downloadKcanotifyData": "ts-node scripts/downloadKcanotifyGamedata.ts",
24
+ "convertAssets": "ts-node scripts/convertAssets.ts",
25
25
  "downloadKcQuestsData": "ts-node scripts/downloadKcQuestsData.ts",
26
+ "downloadKcanotifyData": "ts-node scripts/downloadKcanotifyGamedata.ts",
26
27
  "downloadSprites": "ts-node scripts/downloadSprites.ts",
27
- "convertAssets": "ts-node scripts/convertAssets.ts",
28
28
  "lint": "eslint . --ignore-path .gitignore",
29
29
  "lint:fix": "npm run lint -- --fix",
30
30
  "storybook": "start-storybook -p 6006",
31
31
  "test": "jest",
32
- "typeCheck": "tsc --noEmit"
32
+ "typeCheck": "tsc --noEmit",
33
+ "update": "npm run downloadKcanotifyData & npm run downloadKcQuestsData"
33
34
  },
34
35
  "dependencies": {
35
36
  "react-use": "^17.3.1",
@@ -2,7 +2,7 @@ import { version, KcwikiQuestData } from '../../build/kcQuestsData'
2
2
 
3
3
  test('should KcwikiQuestData Game data version correct', () => {
4
4
  expect(version).toMatchInlineSnapshot(
5
- `"004638c4fa18cf4d37e45f3a8704bffe7cdaa49e"`
5
+ `"5fc5ff0a78daaefe383d702873a688704f546de4"`
6
6
  )
7
7
  })
8
8