Compare commits
8
Commits
a3e20f15ef
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cab7b131bf | ||
|
|
702a62a914 | ||
|
|
2264830d9f | ||
|
|
ae2a328f36 | ||
|
|
1aaa257041 | ||
|
|
918afc5d2c | ||
|
|
2118f04b63 | ||
|
|
c09409e182 |
BIN
Binary file not shown.
Vendored
+1
@@ -1 +1,2 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
export {};
|
export {};
|
||||||
|
|||||||
Vendored
+1
@@ -1,3 +1,4 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
"use strict";
|
"use strict";
|
||||||
var __importDefault = (this && this.__importDefault) || function (mod) {
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import colors from "./utils/console-colors";
|
import colors from "./utils/console-colors";
|
||||||
|
|||||||
+6
-3
@@ -1,11 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "@moduletrace/nodecid",
|
"name": "@moduletrace/nodecid",
|
||||||
"version": "1.0.7",
|
"version": "1.0.8",
|
||||||
"description": "Simple CI/CD process",
|
"description": "Simple CI/CD process",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
"nodecid": "./dist/index.js",
|
"nodecid": "./dist/index.js"
|
||||||
"node-ci-cd": "./dist/index.js"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"compile": "bun build --compile --minify --sourcemap --bytecode index.ts --outfile bin/nodecid"
|
"compile": "bun build --compile --minify --sourcemap --bytecode index.ts --outfile bin/nodecid"
|
||||||
@@ -15,6 +14,10 @@
|
|||||||
"Continuous Integration",
|
"Continuous Integration",
|
||||||
"Continous Deployment"
|
"Continous Deployment"
|
||||||
],
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.tben.me/Moduletrace/nodecid.git"
|
||||||
|
},
|
||||||
"author": "Benjamin Toby",
|
"author": "Benjamin Toby",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
+1
-1
@@ -11,4 +11,4 @@ fi
|
|||||||
git add .
|
git add .
|
||||||
git commit -m "$msg"
|
git commit -m "$msg"
|
||||||
git push
|
git push
|
||||||
npm publish
|
bun publish
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
msg="Updates"
|
||||||
|
else
|
||||||
|
msg="$1"
|
||||||
|
fi
|
||||||
|
|
||||||
|
git add .
|
||||||
|
git commit -m "$msg"
|
||||||
|
git push
|
||||||
Reference in New Issue
Block a user