Skip to content

Commit 0a7fd07

Browse files
authored
fix: [BBND-965] add shebang to cli index.ts (#1308)
Signed-off-by: Luigi Navarro <luigi@io.builders>
1 parent 1df8a86 commit 0a7fd07

File tree

9 files changed

+16
-13
lines changed

9 files changed

+16
-13
lines changed

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/stablecoin-npm-backend",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "",
55
"author": "",
66
"license": "Apache-2.0",

changeVersion.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ update_version() {
4545
if [[ "$OSTYPE" == "darwin"* || "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "msys" ]]; then
4646
# Works for macOS, Linux, and Git Bash on Windows
4747
update_version
48+
npm install
4849
else
4950
echo "❌ Error: Unsupported OS type: $OSTYPE"
5051
exit 1

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/stablecoin-npm-cli",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "CLI for Hedera Stablecoin",
55
"main": "./build/src/index.js",
66
"bin": {

cli/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env node
2+
13
/*
24
*
35
* Hedera Stablecoin CLI

contracts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/stablecoin-npm-contracts",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "",
55
"main": "./build/typechain-types/index.js",
66
"module": "./build/typechain-types/index.js",

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/hedera-stable-coin",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"private": true,
55
"description": "Stablecoin studio",
66
"keywords": [

sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/stablecoin-npm-sdk",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "stablecoin studio SDK",
55
"main": "./build/cjs/src/index.js",
66
"module": "./build/esm/src/index.js",

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/stablecoin-dapp",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"files": [
55
"build/"
66
],

0 commit comments

Comments
 (0)