Skip to content

Commit

Permalink
feat(package): add if-merge command tool into package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
manushak committed Aug 1, 2024
1 parent 54a46d9 commit 1fa4326
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@grnsft/if",
"name": "if-environment",
"description": "Impact Framework",
"version": "0.5.0",
"author": {
Expand All @@ -11,7 +11,8 @@
"if-run": "./build/if-run/index.js",
"if-env": "./build/if-env/index.js",
"if-check": "./build/if-check/index.js",
"if-csv": "./build/if-csv/index.js"
"if-csv": "./build/if-csv/index.js",
"if-merge": "./build/if-merge/index.js"
},
"bugs": {
"url": "https://github.com/Green-Software-Foundation/if/issues/new?assignees=&labels=feedback&projects=&template=feedback.md&title=Feedback+-+"
Expand Down Expand Up @@ -80,6 +81,7 @@
"if-csv": "cross-env CURRENT_DIR=$(node -p \"process.env.INIT_CWD\") npx ts-node src/if-csv/index.ts",
"if-diff": "npx ts-node src/if-diff/index.ts",
"if-env": "cross-env CURRENT_DIR=$(node -p \"process.env.INIT_CWD\") npx ts-node src/if-env/index.ts",
"if-merge": "cross-env CURRENT_DIR=$(node -p \"process.env.INIT_CWD\") npx ts-node src/if-merge/index.ts",
"if-run": "npx ts-node src/if-run/index.ts",
"lint": "gts lint",
"pre-commit": "lint-staged",
Expand All @@ -89,4 +91,4 @@
"test": "jest --verbose --testPathPattern=src/__tests__/"
},
"stability": "stable"
}
}

0 comments on commit 1fa4326

Please sign in to comment.