Skip to content

Commit cb08711

Browse files
committed
v0.8.0
1 parent 6056790 commit cb08711

1 file changed

Lines changed: 16 additions & 5 deletions

File tree

package.json

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "formik",
33
"description": "Forms in React, without tears",
4-
"version": "0.7.3-rc1",
4+
"version": "0.8.0",
55
"license": "MIT",
66
"author": "Jared Palmer <jared@palmer.net>",
77
"repository": "jaredpalmer/formik",
@@ -18,7 +18,9 @@
1818
"main": "dist/formik.js",
1919
"module": "dist/formik.es6.js",
2020
"typings": "dist/types/formik.d.ts",
21-
"files": ["dist"],
21+
"files": [
22+
"dist"
23+
],
2224
"scripts": {
2325
"test": "jest --env=jsdom",
2426
"test:watch": "npm run test -- --watch",
@@ -72,15 +74,24 @@
7274
]
7375
},
7476
"jest": {
75-
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
77+
"collectCoverageFrom": [
78+
"src/**/*.{ts,tsx}"
79+
],
7680
"transform": {
7781
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
7882
},
7983
"testMatch": [
8084
"<rootDir>/test/**/*.ts?(x)",
8185
"<rootDir>/test/**/?(*.)(spec|test).ts?(x)"
8286
],
83-
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
84-
"moduleFileExtensions": ["ts", "tsx", "js", "json"]
87+
"transformIgnorePatterns": [
88+
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
89+
],
90+
"moduleFileExtensions": [
91+
"ts",
92+
"tsx",
93+
"js",
94+
"json"
95+
]
8596
}
8697
}

0 commit comments

Comments
 (0)