Skip to content

Commit

Permalink
0.0.604
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Oct 3, 2024
1 parent 96c802f commit f86c8ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions imports/packager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -995,11 +995,11 @@ export class Packager<L extends Link<any>> {

let idI = 0;
// const ids = Array.from(Array(pckg.data.length).keys()).map(id => id+99999999);
const ids = await deep.reserve(pckg.data.length);
const ids = await deep.reserve(pckg.data.length + 1);

const dc = '@deep-foundation/core';

const packageId = _packageId || ids[ids.length];
const packageId = _packageId || ids[ids.length - 1];
const inserting = [];
const updating = [];
const remembered: any = {};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deep-foundation/deeplinks",
"version": "0.0.603",
"version": "0.0.604",
"license": "Unlicense",
"type": "module",
"main": "import.js",
Expand Down

0 comments on commit f86c8ed

Please sign in to comment.