CLI export multiple files, wrong numbering of frames in tags

Version: v1.2.16.3-x64
What happens:
When exporting multiple .aseprite files using CLI to single .json, tag frames are numbered from 0 for each file.

What i did:

  1. Create a first file with single frame tagged as “Tag1”, save as “test_01.aseprite”
  2. Create a second file with single frame tagged as “Tag2”, save as “test_02.aseprite”
  3. Export using CLI:

aseprite.exe test_*.aseprite -b --list- tags --data “test.json”

What i got:
Contents of “test.json” are:

{ "frames": {
   "test_01.aseprite": {
[[[cut]]]
   },
   "test_02.aseprite": {
[[[cut]]]
   }
 },
 "meta": {
[[[cut]]] 
  "frameTags": [
   { "name": "Tag1", "from": 0, "to": 0, "direction": "forward" },
   { "name": "Tag2", "from": 0, "to": 0, "direction": "forward" }
  ]
 }
}

Both tags point to the same frame.

What i expected to get:
“Tag2” should point to frames from the file defining this tag (here: from 1 to 1).

   { "name": "Tag1", "from": 0, "to": 0, "direction": "forward" },
   { "name": "Tag2", "from": 1, "to": 1, "direction": "forward" }