diff --git a/.changeset/lucky-feet-turn.md b/.changeset/lucky-feet-turn.md deleted file mode 100644 index 893d74c..0000000 --- a/.changeset/lucky-feet-turn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@blizzard-api/client': patch ---- - -Improve client functionality and dogfood @blizzard-api/wow diff --git a/.changeset/ten-taxis-look.md b/.changeset/ten-taxis-look.md deleted file mode 100644 index e21ba9a..0000000 --- a/.changeset/ten-taxis-look.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@blizzard-api/wow': patch ---- - -Begin the creation of @blizzard-api/wow with achievement API types diff --git a/.changeset/thin-suns-count.md b/.changeset/thin-suns-count.md deleted file mode 100644 index 685811c..0000000 --- a/.changeset/thin-suns-count.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@blizzard-api/core': patch ---- - -Update @blizzard-ap/core with better types and remove some unused ones diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 4917da9..df7b73f 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,13 @@ # @blizzard-api/client +## 0.0.3 + +### Patch Changes + +- 2d6dbeb: Improve client functionality and dogfood @blizzard-api/wow +- Updated dependencies [06dc41d] + - @blizzard-api/core@0.0.3 + ## 0.0.2 ### Patch Changes diff --git a/packages/client/package.json b/packages/client/package.json index 0c09df9..409f2c3 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@blizzard-api/client", - "version": "0.0.2", + "version": "0.0.3", "license": "MIT", "author": "Putro", "description": "A node.js axios client to integrate with the blizzard battle.net api.", @@ -47,7 +47,7 @@ "axios": "1.6.8" }, "peerDependencies": { - "@blizzard-api/core": "0.0.2" + "@blizzard-api/core": "0.0.3" }, "devDependencies": { "@blizzard-api/core": "workspace:*", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index d674949..6e0ed60 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @blizzard-api/core +## 0.0.3 + +### Patch Changes + +- 06dc41d: Update @blizzard-ap/core with better types and remove some unused ones + ## 0.0.2 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 46fc19f..8a46cdd 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@blizzard-api/core", - "version": "0.0.2", + "version": "0.0.3", "license": "MIT", "author": "Putro", "description": "The core helpers used by all @blizzard-api/* packages.", diff --git a/packages/wow/CHANGELOG.md b/packages/wow/CHANGELOG.md new file mode 100644 index 0000000..7b33bf2 --- /dev/null +++ b/packages/wow/CHANGELOG.md @@ -0,0 +1,9 @@ +# @blizzard-api/wow + +## 0.0.1 + +### Patch Changes + +- 3ea04fa: Begin the creation of @blizzard-api/wow with achievement API types +- Updated dependencies [06dc41d] + - @blizzard-api/core@0.0.3 diff --git a/packages/wow/package.json b/packages/wow/package.json index 09e5dc7..4121629 100644 --- a/packages/wow/package.json +++ b/packages/wow/package.json @@ -1,60 +1,60 @@ -{ - "name": "@blizzard-api/wow", - "version": "0.0.0", - "license": "MIT", - "author": "Putro", - "description": "A series of helpers to interact with the World of Warcraft Blizzard API", - "repository": "https://github.com/Pewtro/blizzard/packages/wow", - "type": "module", - "engines": { - "node": ">=18 <19 || >=20" - }, - "main": "./dist/index.js", - "exports": { - "import": { - "types": "./dist/index.d.ts", - "default": "./dist/index.js" - }, - "require": { - "types": "./dist/index.d.cts", - "default": "./dist/index.cjs" - } - }, - "files": [ - "dist" - ], - "keywords": [ - "blizzard", - "battlenet", - "battle.net", - "bnet", - "api", - "world of warcraft", - "warcraft", - "wow", - "classic", - "retail", - "starcraft", - "sc2", - "diablo", - "d3", - "hs", - "hearthstone", - "ow", - "overwatch" - ], - "dependencies": {}, - "peerDependencies": { - "@blizzard-api/core": "0.0.2" - }, - "devDependencies": { - "@blizzard-api/core": "workspace:*" - }, - "scripts": { - "build": "tsup", - "debv": "tsup --watch", - "test": "vitest run", - "test:coverage": "pnpm test -- --coverage", - "test:watch": "vitest watch" - } -} +{ + "name": "@blizzard-api/wow", + "version": "0.0.1", + "license": "MIT", + "author": "Putro", + "description": "A series of helpers to interact with the World of Warcraft Blizzard API", + "repository": "https://github.com/Pewtro/blizzard/packages/wow", + "type": "module", + "engines": { + "node": ">=18 <19 || >=20" + }, + "main": "./dist/index.js", + "exports": { + "import": { + "types": "./dist/index.d.ts", + "default": "./dist/index.js" + }, + "require": { + "types": "./dist/index.d.cts", + "default": "./dist/index.cjs" + } + }, + "files": [ + "dist" + ], + "keywords": [ + "blizzard", + "battlenet", + "battle.net", + "bnet", + "api", + "world of warcraft", + "warcraft", + "wow", + "classic", + "retail", + "starcraft", + "sc2", + "diablo", + "d3", + "hs", + "hearthstone", + "ow", + "overwatch" + ], + "dependencies": {}, + "peerDependencies": { + "@blizzard-api/core": "0.0.3" + }, + "devDependencies": { + "@blizzard-api/core": "workspace:*" + }, + "scripts": { + "build": "tsup", + "debv": "tsup --watch", + "test": "vitest run", + "test:coverage": "pnpm test -- --coverage", + "test:watch": "vitest watch" + } +}