Skip to content

Commit

Permalink
v0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Jul 11, 2017
1 parent 9dd22d5 commit 9ec5793
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "formik",
"description": "Forms in React, without tears",
"version": "0.7.1",
"version": "0.7.2",
"license": "MIT",
"author": "Jared Palmer <jared@palmer.net>",
"repository": "jaredpalmer/formik",
Expand All @@ -15,7 +15,11 @@
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": ["es6", "lib", "umd"],
"files": [
"es6",
"lib",
"umd"
],
"scripts": {
"test": "jest",
"clean": "rimraf lib umd es6",
Expand Down Expand Up @@ -62,15 +66,24 @@
]
},
"jest": {
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
"<rootDir>/src/**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
"moduleFileExtensions": ["ts", "tsx", "js", "json"]
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}

0 comments on commit 9ec5793

Please sign in to comment.