From d8f7f9542d468758fc26f142562c2451f62ff5ee Mon Sep 17 00:00:00 2001 From: Tom Crockett Date: Mon, 23 Apr 2018 13:50:27 -0700 Subject: [PATCH] v2.0.0 --- package.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 833871f..5c5878e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "unionize", - "version": "1.0.1", + "version": "2.0.0", "description": "Boilerplate-free functional sum types in TypeScript", "repository": "https://github.com/pelotom/unionize", "author": "Tom Crockett ", @@ -9,8 +9,7 @@ "types": "./lib/index.d.ts", "scripts": { "build": "tsc --pretty", - "format": - "prettier $([ \"$CI\" == true ] && echo --list-different || echo --write) './**/*.{ts,tsx,js,json,css}'", + "format": "prettier $([ \"$CI\" == true ] && echo --list-different || echo --write) './**/*.{ts,tsx,js,json,css}'", "test": "jest --no-cache --verbose --coverage", "test:watch": "jest --watch" }, @@ -25,7 +24,10 @@ "jest": { "verbose": false, "testRegex": ".*/*.spec.ts$", - "moduleFileExtensions": ["js", "ts"], + "moduleFileExtensions": [ + "js", + "ts" + ], "transform": { "\\.ts$": "/node_modules/ts-jest/preprocessor" },