@ruvice/my-maple-models 0.2.1 → 1.0.0
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/README.md +25 -0
- package/dist/models/api/apiResponseParser.js +2 -2
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# 📦 Publishing Guide
|
|
2
|
+
|
|
3
|
+
This document explains the simple workflow for releasing new versions of this npm package.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 🚀 Releasing a New Version
|
|
8
|
+
|
|
9
|
+
Follow these steps whenever you want to publish an update to npm.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## ✅ 1. Build the package
|
|
14
|
+
|
|
15
|
+
If the project uses TypeScript or outputs compiled files to `dist/`, you must build before publishing:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm run build
|
|
19
|
+
|
|
20
|
+
npm version patch # 1.0.0 → 1.0.1
|
|
21
|
+
npm version minor # 1.0.0 → 1.1.0
|
|
22
|
+
npm version major # 1.0.0 → 2.0.0
|
|
23
|
+
|
|
24
|
+
npm publish --access public
|
|
25
|
+
npm publish
|
|
@@ -23,7 +23,7 @@ export const ItemEquipmentSlotMappingSEA = {
|
|
|
23
23
|
"Medal": ItemEquipmentSlot.Medal,
|
|
24
24
|
"Secondary Weapons": ItemEquipmentSlot.SecondaryWeapons,
|
|
25
25
|
"Cape": ItemEquipmentSlot.Cape,
|
|
26
|
-
"M.Heart": ItemEquipmentSlot.MechanicalHeart,
|
|
26
|
+
"M. Heart": ItemEquipmentSlot.MechanicalHeart,
|
|
27
27
|
"Pocket Item": ItemEquipmentSlot.PocketItem
|
|
28
28
|
};
|
|
29
29
|
export const ItemEquipmentSlotMappingKMS = {
|
|
@@ -113,7 +113,7 @@ export const CharacterClassMappingSEA = {
|
|
|
113
113
|
"Ark": CharacterClass.Ark,
|
|
114
114
|
"Hayato": CharacterClass.Hayato,
|
|
115
115
|
"Kanna": CharacterClass.Kanna,
|
|
116
|
-
"
|
|
116
|
+
"Ren": CharacterClass.Len
|
|
117
117
|
};
|
|
118
118
|
export const CharacterClassMappingKMS = {
|
|
119
119
|
"히어로": CharacterClass.Hero,
|