Skip to content

Commit

Permalink
v0.11.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Dec 14, 2017
1 parent d4fcb76 commit 37a185f
Showing 1 changed file with 25 additions and 11 deletions.
36 changes: 25 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "formik",
"description": "Forms in React, without tears",
"version": "0.11.0-alpha.4",
"version": "0.11.0-beta.1",
"license": "MIT",
"author": "Jared Palmer <jared@palmer.net>",
"repository": "jaredpalmer/formik",
Expand All @@ -18,17 +18,17 @@
"main": "dist/formik.js",
"module": "dist/formik.es6.js",
"typings": "dist/formik.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"test": "jest --env=jsdom",
"test:watch": "npm run test -- --watch",
"start": "cross-env NODE_ENV=development tsc-watch",
"prebuild": "rimraf dist",
"build":
"tsc -p tsconfig.base.json && cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c && rimraf compiled",
"build": "tsc -p tsconfig.base.json && cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c && rimraf compiled",
"prepublish": "npm run build",
"format":
"prettier --trailing-comma es5 --single-quote --write 'src/**/*' 'test/**/*' 'README.md'",
"format": "prettier --trailing-comma es5 --single-quote --write 'src/**/*' 'test/**/*' 'README.md'",
"precommit": "lint-staged",
"addc": "all-contributors add",
"gen-docs": "all-contributors generate && doctoc README.md"
Expand Down Expand Up @@ -92,13 +92,27 @@
"semi": true
},
"jest": {
"setupFiles": ["raf/polyfill", "<rootDir>/test/setupTest.ts"],
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
"setupFiles": [
"raf/polyfill",
"<rootDir>/test/setupTest.ts"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": ["<rootDir>/test/**/?(*.)(spec|test).ts?(x)"],
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
"moduleFileExtensions": ["ts", "tsx", "js", "json"]
"testMatch": [
"<rootDir>/test/**/?(*.)(spec|test).ts?(x)"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}

0 comments on commit 37a185f

Please sign in to comment.