Skip to content

Commit

Permalink
build: 🚧 Dev Environment changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Krutoy242 committed Sep 27, 2024
1 parent 8c68d4b commit 857716e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions dev/make_pack.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,13 @@ const argv = yargs(process.argv.slice(2))
execSyncInherit(`npx conventional-changelog-cli --config dev/tools/changelog/config.cjs -o ${latestPath}`)

// Iconize
execSyncInherit(`ts-node E:/dev/mc-icons/src/cli.ts "${latestPath}" --silent --no-short --modpack=e2ee --treshold=2`)
await git.add(latestPath)
try {
execSyncInherit(`ts-node E:/dev/mc-icons/src/cli.ts "${latestPath}" --silent --no-short --modpack=e2ee --treshold=2`)
await git.add(latestPath)
}
catch (error) {
write(`ERROR: ${error}`)
}

await open(latestPath, { wait: true })

Expand Down

0 comments on commit 857716e

Please sign in to comment.