This commit is contained in:
Benjamin Toby 2025-01-16 08:16:23 +01:00
parent 702a62a914
commit cab7b131bf
5 changed files with 8 additions and 4 deletions

1
dist/index.d.ts vendored
View File

@ -1 +1,2 @@
#!/usr/bin/env node
export {};

1
dist/index.js vendored
View File

@ -1,3 +1,4 @@
#!/usr/bin/env node
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,5 @@
#!/usr/bin/env node
import fs from "fs";
import path from "path";
import colors from "./utils/console-colors";

View File

@ -1,10 +1,10 @@
{
"name": "@moduletrace/nodecid",
"version": "1.0.7",
"version": "1.0.8",
"description": "Simple CI/CD process",
"main": "./run.sh",
"main": "dist/index.js",
"bin": {
"nodecid": "./run.sh"
"nodecid": "./dist/index.js"
},
"scripts": {
"compile": "bun build --compile --minify --sourcemap --bytecode index.ts --outfile bin/nodecid"