Socket
Book a DemoInstallSign in
Socket

tsc-committed

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsc-committed

A CLI tool to report tsc errors on committed files between base branch and feature branch in a git repo

1.1.1
latest
Source
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

TSC Committed

TSC Committed is a CLI tool that helps identify the committed files between a base branch and a feature branch that fail the TypeScript compilation on committed files in a Git repository.

The tool is designed to be used in a continuous integration/continuous deployment (CI/CD) environment or as a Git hook to ensure that only TypeScript files that compiled successfully are committed to the codebase.

Installation

To install TSC Committed, run the following command:

npm install -g tsc-committed

or using npx:

npx tsc-committed

Usage

TSC Committed can be used as a command-line tool by passing in the project directory, root directory, file extensions and the base branch and feature branch to compare. The tool will output the list of files TypeScript compilation errors found on the committed files.

tsc-committed --projectDir path/to/project --rootDir src --extensions ts,tsx --baseBranch main

Options

The following options are available:

  • --projectDir: The project directory to run tsc against. Default is the current directory.
  • --rootDir: The root directory for TypeScript files. Default is "src".
  • --extensions: The file extensions to include. Default is "ts,tsx".
  • --baseBranch: The base branch to compare with. Default is main.
  • --verbose: Enables verbose output.

Using as a Git Hook

To use TSC Committed as a Git hook, add the following to your .git/hooks/pre-commit file:

#!/bin/sh

tsc-committed --baseBranch main  || exit 1

Make sure the pre-commit file is executable:

bash Copy code

chmod +x .git/hooks/pre-commit

Contributing

If you would like to contribute to TSC Committed, please follow the steps below:

  • Fork the repository.
  • Create a new branch for your feature or bug fix.
  • Make your changes and write tests for them.
  • Run the tests to ensure they pass.
  • Commit your changes and push your branch to your fork.
  • Create a pull request to the main branch of the vinothpandian/tsc-committed repository.

License

TSC Committed is licensed under the MIT License. See the LICENSE file for more information.

Keywords

tsc

FAQs

Package last updated on 12 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.