@ruvice/my-maple-models 0.2.2 → 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 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
@@ -113,7 +113,7 @@ export const CharacterClassMappingSEA = {
113
113
  "Ark": CharacterClass.Ark,
114
114
  "Hayato": CharacterClass.Hayato,
115
115
  "Kanna": CharacterClass.Kanna,
116
- "Len": CharacterClass.Len
116
+ "Ren": CharacterClass.Len
117
117
  };
118
118
  export const CharacterClassMappingKMS = {
119
119
  "히어로": CharacterClass.Hero,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruvice/my-maple-models",
3
- "version": "0.2.2",
3
+ "version": "1.0.0",
4
4
  "description": "Shared models and utils for MapleStory Nexon Open API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",