@rpgjs/tiledmap 5.0.0-beta.8 → 5.0.0-beta.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.
- package/CHANGELOG.md +14 -0
- package/dist/client/index.js +2 -2
- package/dist/client/index5.js +2 -1
- package/dist/server/index.d.ts +4 -0
- package/dist/server/physics.d.ts +7 -0
- package/package.json +5 -5
- /package/dist/{client.d.ts → client/client.d.ts} +0 -0
- /package/dist/{index.d.ts → client/index.d.ts} +0 -0
- /package/dist/{physics.d.ts → client/physics.d.ts} +0 -0
- /package/dist/{server.d.ts → server/server.d.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @rpgjs/tiledmap
|
|
2
2
|
|
|
3
|
+
## 5.0.0-beta.9
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- c456d25: beta.9
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [c456d25]
|
|
12
|
+
- @rpgjs/client@5.0.0-beta.9
|
|
13
|
+
- @rpgjs/common@5.0.0-beta.9
|
|
14
|
+
- @rpgjs/server@5.0.0-beta.9
|
|
15
|
+
- @rpgjs/vite@5.0.0-beta.9
|
|
16
|
+
|
|
3
17
|
## 5.0.0-beta.8
|
|
4
18
|
|
|
5
19
|
### Major Changes
|
package/dist/client/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TiledParser } from "./index2.js";
|
|
2
2
|
import { prepareTiledPhysicsData } from "./index3.js";
|
|
3
3
|
import client_default from "./index4.js";
|
|
4
|
-
import
|
|
4
|
+
import __ce_component from "./index5.js";
|
|
5
5
|
import { createModule } from "@rpgjs/common";
|
|
6
6
|
import { provideLoadMap } from "@rpgjs/client";
|
|
7
7
|
//#region src/index.ts
|
|
@@ -25,7 +25,7 @@ function provideTiledMap(options) {
|
|
|
25
25
|
parsedMap.tilesets = tilesets;
|
|
26
26
|
const obj = {
|
|
27
27
|
data: mapData,
|
|
28
|
-
component,
|
|
28
|
+
component: __ce_component,
|
|
29
29
|
parsedMap,
|
|
30
30
|
id: map,
|
|
31
31
|
params: { basePath: options.basePath }
|
package/dist/client/index5.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rpgjs/tiledmap",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.9",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"description": "RPGJS is a framework for creating RPG/MMORPG games",
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@canvasengine/presets": "*",
|
|
26
|
-
"@rpgjs/client": "5.0.0-beta.
|
|
27
|
-
"@rpgjs/common": "5.0.0-beta.
|
|
28
|
-
"@rpgjs/server": "5.0.0-beta.
|
|
29
|
-
"@rpgjs/vite": "5.0.0-beta.
|
|
26
|
+
"@rpgjs/client": "5.0.0-beta.9",
|
|
27
|
+
"@rpgjs/common": "5.0.0-beta.9",
|
|
28
|
+
"@rpgjs/server": "5.0.0-beta.9",
|
|
29
|
+
"@rpgjs/vite": "5.0.0-beta.9",
|
|
30
30
|
"canvasengine": "*"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|