fix: update shebang lines in the ts scripts (#881)

re #880
This commit is contained in:
Vivian Plasencia
2024-10-23 11:50:46 +02:00
committed by GitHub
parent 6c9ede6931
commit 82cdc60af6
6 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
#!node_modules/.bin/ts-node
#!/usr/bin/env ts-node
import { readdirSync, rmSync } from "fs"
const folderName = "apps"

View File

@@ -1,4 +1,4 @@
#!node_modules/.bin/ts-node
#!/usr/bin/env ts-node
import { rmSync } from "fs"
const folderName = "packages"

View File

@@ -1,4 +1,4 @@
#!node_modules/.bin/ts-node
#!/usr/bin/env ts-node
import { readdirSync, rmSync } from "fs"
const folderName = "packages"

View File

@@ -1,4 +1,4 @@
#!node_modules/.bin/ts-node
#!/usr/bin/env ts-node
import compare from "semver/functions/compare"
import { execSync } from "child_process"
import contractsPkgJson from "@semaphore-protocol/contracts/package.json"

View File

@@ -1,4 +1,4 @@
#!node_modules/.bin/ts-node
#!/usr/bin/env ts-node
import { readFileSync, readdirSync, writeFileSync } from "node:fs"
const folderName = "packages"

View File

@@ -1,4 +1,4 @@
#!node_modules/.bin/ts-node
#!/usr/bin/env ts-node
import { execSync } from "child_process"
async function main() {