Skip to content

Commit

Permalink
fix: sdk release
Browse files Browse the repository at this point in the history
Follow up of #124
  • Loading branch information
ayushmanchhabra committed Nov 1, 2023
1 parent cb0fb44 commit 8ecfeac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/sdk.js
@@ -1,7 +1,7 @@
const { writeFile } = require('node:fs/promises');
const fs = require('node:fs');

const nodeManifest = require('../package.json');

nodeManifest.version = nodeManifest.version + '-sdk';

await writeFile('./package.json', JSON.stringify(nodeManifest, null, 2));
fs.writeFileSync('./package.json', JSON.stringify(nodeManifest, null, 2));
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -48,4 +48,4 @@
"desktop",
"application"
]
}
}

0 comments on commit 8ecfeac

Please sign in to comment.