Skip to content

Commit

Permalink
0.0.572
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Sep 25, 2024
1 parent 176a2d3 commit 10557a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions migrations/1678940577209-deepcase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const root = new DeepClient({

export const installPackage = async (deep, packageName) => {
const adminId = await deep.id('deep', 'admin');
const promiseTree = deep.idLocal('@deep-foundation/core', 'promiseTree');

log('adminId', adminId);
const packageQueryTypeId = deep.idLocal('@deep-foundation/core', 'PackageQuery');
Expand All @@ -38,6 +39,9 @@ export const installPackage = async (deep, packageName) => {
});

await deep.await(installId);
console.log(JSON.stringify((await deep.select({
up: { tree_id: promiseTree, parent_id: installId },
})).data, null, 2));

const packageId = await deep.id(packageName);
log(`${packageName} package is installed as ${packageId} link.`)
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.571",
"version": "0.0.572",
"license": "Unlicense",
"type": "module",
"main": "import.js",
Expand Down

0 comments on commit 10557a2

Please sign in to comment.