labag 2.2.8 → 2.2.9

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.
@@ -1,7 +1,7 @@
1
1
  export declare const modes: {
2
- superhhh: import("..").Mode<"superhhh">;
3
- greenwei: import("..").Mode<"greenwei">;
4
2
  pikachu: import("..").Mode<"pikachu">;
3
+ greenwei: import("..").Mode<"greenwei">;
4
+ superhhh: import("..").Mode<"superhhh">;
5
5
  normal: import("..").Mode<"normal">;
6
6
  };
7
7
  export type ModeName = (typeof modes)[keyof typeof modes]["name"];
@@ -9,9 +9,9 @@ const normal_1 = __importDefault(require("./normal"));
9
9
  const pikachu_1 = __importDefault(require("./pikachu"));
10
10
  const superhhh_1 = __importDefault(require("./superhhh"));
11
11
  exports.modes = {
12
- superhhh: superhhh_1.default,
13
- greenwei: greenwei_1.default,
14
12
  pikachu: pikachu_1.default,
13
+ greenwei: greenwei_1.default,
14
+ superhhh: superhhh_1.default,
15
15
  normal: normal_1.default,
16
16
  };
17
17
  exports.modeList = Object.values(exports.modes);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "labag",
3
- "version": "2.2.8",
3
+ "version": "2.2.9",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -4,9 +4,9 @@ import pikachu from "./pikachu";
4
4
  import superhhh from "./superhhh";
5
5
 
6
6
  export const modes = {
7
- superhhh,
8
- greenwei,
9
7
  pikachu,
8
+ greenwei,
9
+ superhhh,
10
10
  normal,
11
11
  }
12
12