Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@clipchamp/ng-builders

Package Overview
Dependencies
Maintainers
5
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@clipchamp/ng-builders

[![Build Status](https://travis-ci.org/clipchamp/ng-builders.svg?branch=master)](https://travis-ci.org/clipchamp/ng-builders) [![npm](https://img.shields.io/npm/dt/@clipchamp/ng-builders.svg)](https://www.npmjs.com/package/@clipchamp/ng-builders) [![npm](

  • 0.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-60%
Maintainers
5
Weekly downloads
 
Created
Source

Angular Stryker Builder

Build Status npm npm

Easily integrate the Stryker Mutator framework for mutation testing into your Angular app(s).

Installation

  1. Install Stryker and the necessary plugins for your Angular app
npm i -D stryker stryker-api stryker-typescript stryker-jest-runner
  1. Install stryker-run builder
npm i -D @clipchamp/ng-builders
  1. Add custom architect config to your angular.json
[...]
"lint":  { 
    "builder":  "@angular-devkit/build-angular:tslint",
    "options":  {
	    "tsConfig":  ["src/tsconfig.json",  "src/tsconfig.spec.json"],
	    "exclude":  ["**/node_modules/**"]
    }
},
"mutate":  {
    	"builder":  "@clipchamp/ng-builders:run-stryker",
	"options":  {
		"configPath": "...." // path is relative to the project folder or workspace root (both are checked),
		"mutator": "typescript",
		[...]
	}
},
[...]

Configuration

You can either pass a configuration file through the options object in the architect or configure Stryker directly there.

Usage

Depending on how you called your architect you need to change this command.

    ng run my-app:mutate

Keywords

FAQs

Package last updated on 14 Nov 2018

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc