Skip to content

Commit 208b025

Browse files
authored
Merge pull request #7 from alsiola/develop
Release related changes
2 parents e11a89f + b617c78 commit 208b025

File tree

9 files changed

+28
-13
lines changed

9 files changed

+28
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# production
1010
/build
1111
/dist
12+
/docs
1213

1314
# misc
1415
.DS_Store

.npmignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# misc
10+
.DS_Store
11+
.env.local
12+
.env.development.local
13+
.env.test.local
14+
.env.production.local
15+
16+
npm-debug.log*
17+
yarn-debug.log*
18+
yarn-error.log*

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,11 @@ Add the package to your React app using yarn or npm:
4242
yarn add form-and-function
4343
```
4444

45-
react and react-dom are peer dependencies listed as version >= 15.x.x as this is what I have tested. There are no
46-
direct dependencies.
45+
react and react-dom are peer dependencies listed as version >= 15.x.x as this is what I have tested. There are no direct dependencies. The current release version of form-and-function is 0.2.2
4746

4847
## Usage
4948

50-
form-and-function relies upon render props, if you are unfamiliar with this concept then there is a great overview **here**.
49+
form-and-function relies upon render props, if you are unfamiliar with this concept then there is a great overview [here](https://reactjs.org/docs/render-props.html)
5150

5251
There is no configuration, and no App level providers (no context was used in the making of this library!). Simply import the Form component and get to work.
5352

docs/asset-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"main.css": "static/css/main.fa179942.css",
33
"main.css.map": "static/css/main.fa179942.css.map",
4-
"main.js": "static/js/main.9f58b0a0.js",
5-
"main.js.map": "static/js/main.9f58b0a0.js.map",
4+
"main.js": "static/js/main.c92d3740.js",
5+
"main.js.map": "static/js/main.c92d3740.js.map",
66
"static/media/flags.png": "static/media/flags.9c74e172.png",
77
"static/media/icons.eot": "static/media/icons.674f50d2.eot",
88
"static/media/icons.svg": "static/media/icons.912ec66d.svg",

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#000000"><link rel="manifest" href="/form-and-function/manifest.json"><link rel="shortcut icon" href="/form-and-function/favicon.ico"><title>React App</title><link href="/form-and-function/static/css/main.fa179942.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script type="text/javascript" src="/form-and-function/static/js/main.9f58b0a0.js"></script></body></html>
1+
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#000000"><link rel="manifest" href="/form-and-function/manifest.json"><link rel="shortcut icon" href="/form-and-function/favicon.ico"><title>React App</title><link href="/form-and-function/static/css/main.fa179942.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script type="text/javascript" src="/form-and-function/static/js/main.c92d3740.js"></script></body></html>

docs/service-worker.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/static/js/main.9f58b0a0.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/static/js/main.9f58b0a0.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "form-and-function",
3-
"version": "0.1.0",
3+
"version": "0.2.2",
44
"main": "dist/form-and-function.cjs.js",
55
"module": "dist/form-and-function.esm.js",
66
"browser": "dist/form-and-function.umd.js",
77
"types": "dist/modules/index.d.ts",
88
"homepage": "https://alsiola.github.io/form-and-function/",
99
"dependencies": {},
1010
"peerDependencies": {
11-
"react": "^15",
12-
"react-dom": "^15"
11+
"react": ">=15",
12+
"react-dom": ">=15"
1313
},
1414
"devDependencies": {
1515
"@types/deep-equal": "^1.0.1",

0 commit comments

Comments
 (0)