File tree Expand file tree Collapse file tree 6 files changed +17
-9
lines changed
examples/maplibre-jismesh
packages/mesh-data-tile-cli Expand file tree Collapse file tree 6 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 11# mesh-data-tile
22
3+ ![ GitHub Actions Workflow Status] ( https://img.shields.io/github/actions/workflow/status/KotobaMedia/mesh-data-tile/test.yml )
4+ [ ![ NPM Version] ( https://img.shields.io/npm/v/mesh-data-tile )] ( https://www.npmjs.com/package/mesh-data-tile )
5+ [ ![ Crates.io Version] ( https://img.shields.io/crates/v/mesh-data-tile )] ( https://crates.io/crates/mesh-data-tile )
6+
37[ English version (README.md)] ( README.md )
48
59Mesh Tile Format v1 (` MTI1 ` ) のリファレンス実装です。TypeScript のライブラリパッケージと、別パッケージの CLI を含みます。
Original file line number Diff line number Diff line change 11# mesh-data-tile
22
3+ ![ GitHub Actions Workflow Status] ( https://img.shields.io/github/actions/workflow/status/KotobaMedia/mesh-data-tile/test.yml )
4+ [ ![ NPM Version] ( https://img.shields.io/npm/v/mesh-data-tile )] ( https://www.npmjs.com/package/mesh-data-tile )
5+ [ ![ Crates.io Version] ( https://img.shields.io/crates/v/mesh-data-tile )] ( https://crates.io/crates/mesh-data-tile )
6+
37[ 日本語版はこちら (README.ja.md)] ( README.ja.md )
48
59Reference implementation for Mesh Tile Format v1 (` MTI1 ` ) with a TypeScript library package and a separate CLI package.
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ async function main(): Promise<void> {
117117 closeOnClick : false ,
118118 } ) ;
119119
120- map . on ( 'mousemove' , 'jismesh-fill' , ( event ) => {
120+ map . on ( 'mousemove' , 'jismesh-fill' , ( event : any ) => {
121121 const feature = event . features ?. [ 0 ] ;
122122 if ( ! feature ) {
123123 return ;
Original file line number Diff line number Diff line change 8888 "typescript" : " ^5.9.2" ,
8989 "vite" : " ^7.3.1"
9090 },
91- "packageManager" : " pnpm@10.29 .3"
91+ "packageManager" : " pnpm@10.30 .3"
9292}
Original file line number Diff line number Diff line change 44 "description" : " CLI for mesh-data-tile" ,
55 "type" : " module" ,
66 "bin" : {
7- "mesh-tile" : " dist/cli.js"
7+ "mesh-data- tile-cli " : " dist/cli.js"
88 },
99 "publishConfig" : {
1010 "access" : " public"
Original file line number Diff line number Diff line change 1- # mesh-data-tile-rs (reference)
1+ # mesh-data-tile (reference)
22
33Minimal Rust reference implementation for Mesh Tile Format v1 (` MTI1 ` ).
44
@@ -23,7 +23,7 @@ JIS root-tile recommendation:
2323From repository root:
2424
2525``` bash
26- cargo test -p mesh-data-tile-rs
26+ cargo test -p mesh-data-tile
2727```
2828
2929From ` references/rust ` :
@@ -47,8 +47,8 @@ cargo login <CRATES_IO_TOKEN>
4747Preflight checks (from repository root):
4848
4949``` bash
50- cargo test -p mesh-data-tile-rs
51- cargo package -p mesh-data-tile-rs
50+ cargo test -p mesh-data-tile
51+ cargo package -p mesh-data-tile
5252```
5353
5454Dry-run a release (from ` references/rust ` ):
@@ -72,8 +72,8 @@ cargo release major --dry-run
7272
7373Current release config in ` Cargo.toml ` :
7474- Releases are allowed only from ` main ` .
75- - Tag format is ` mesh-data-tile-rs- v<version> ` .
76- - Release commit message format is ` chore(release): mesh-data-tile-rs v<version> ` .
75+ - Tag format is ` mesh-data-tile-v<version> ` .
76+ - Release commit message format is ` chore(release): mesh-data-tile v<version> ` .
7777
7878## Example
7979
You can’t perform that action at this time.
0 commit comments