Skip to content

Commit

Permalink
Reset repo
Browse files Browse the repository at this point in the history
  • Loading branch information
fbarbare committed Aug 6, 2024
1 parent 102f0a0 commit 88727b8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
26 changes: 26 additions & 0 deletions packages/formik/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
node_modules
dist
compiled
*.log
coverage
.DS_Store
next.d.ts
legacy.d.ts
.idea
*.orig
.DS_Store

node_modules

lib/core/metadata.js
lib/core/MetadataBlog.js

website/translated_docs
website/build/
website/yarn.lock
website/node_modules
website/i18n/*
.rts2_cache_es
.rts2_cache_esm
.rts2_cache_cjs
.rts2_cache_umd
10 changes: 7 additions & 3 deletions packages/formik/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "formik",
"description": "Build forms in React, without the tears",
"version": "2.5.0",
"version": "2.4.6",
"license": "Apache-2.0",
"author": "Jared Palmer <jared@palmer.net> (https://jaredpalmer.com)",
"contributors": [
Expand Down Expand Up @@ -30,6 +30,12 @@
}
],
"main": "dist/index.js",
"umd:main": "dist/formik.umd.production.js",
"module": "dist/formik.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"react": ">=16.8.0"
},
Expand All @@ -39,8 +45,6 @@
"test:watch": "npm run test -- --watchAll",
"start": "tsdx watch --tsconfig tsconfig.build.json --verbose --noClean",
"build": "tsdx build --tsconfig tsconfig.build.json",
"prepare": "tsdx build --tsconfig tsconfig.build.json && echo 'Test prepare'",
"prepack": "tsdx build --tsconfig tsconfig.build.json && echo 'Test prepack'",
"lint": "tsdx lint"
},
"dependencies": {
Expand Down

0 comments on commit 88727b8

Please sign in to comment.