pixi-tiledmap 2.0.0 → 2.1.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 +2 -2
- package/dist/index.cjs +1199 -1311
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +388 -359
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +488 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +1298 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +21 -24
- package/dist/index.d.ts +0 -459
- package/dist/index.js +0 -1409
- package/dist/index.js.map +0 -1
package/README.md
CHANGED
|
@@ -120,9 +120,9 @@ map.getLayer('ground'); // find layer Container by name
|
|
|
120
120
|
|
|
121
121
|
```sh
|
|
122
122
|
npm install
|
|
123
|
-
npm run build # ESM + CJS + types via
|
|
123
|
+
npm run build # ESM + CJS + types via tsdown
|
|
124
124
|
npm run dev # watch mode
|
|
125
|
-
npm run
|
|
125
|
+
npm run check # Biome lint + format
|
|
126
126
|
npm run typecheck # tsc --noEmit
|
|
127
127
|
npm test # Vitest
|
|
128
128
|
```
|