Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit a1e58d7

Browse files
committed
Update prop types and simplify tooling
1 parent 0d1cd3a commit a1e58d7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+592
-913
lines changed

.babelrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
{
2-
"stage": 1,
3-
"loose": ["all"]
2+
"presets": ["es2015-loose", "stage-1"]
43
}

.eslintignore

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

.eslintrc

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
11
{
2-
"extends": ["eslint-config-airbnb"],
3-
"env": {
4-
"browser": true,
5-
"node": true
6-
},
7-
"ecmaFeatures": {
8-
"jsx": true
9-
},
10-
"parser": "babel-eslint",
11-
"plugins": [
12-
"babel"
13-
],
14-
"rules": {
15-
"constructor-super": 2,
16-
"comma-dangle": 0,
17-
"eqeqeq": [2, "allow-null"],
18-
"one-var": [2, { "initialized": "never" }],
19-
"key-spacing": 0,
20-
"no-eq-null": 0,
21-
"no-param-reassign": 0,
22-
"no-this-before-super": 2,
23-
"no-underscore-dangle": 0,
24-
"no-undef": 2,
25-
"babel/object-shorthand": 2
26-
}
2+
"extends": "airbnb-base",
3+
"parser": "babel-eslint"
274
}

.gitignore

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
1-
*~
2-
.DS_Store
1+
# Logs
2+
logs
3+
*.log
34
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18+
.grunt
19+
20+
# node-waf configuration
21+
.lock-wscript
22+
23+
# Compiled binary addons (http://nodejs.org/api/addons.html)
24+
build/Release
25+
26+
# Dependency directory
427
node_modules
5-
lib
6-
.coverage
28+
29+
# Optional npm cache directory
30+
.npm
31+
32+
# Optional REPL history
33+
.node_repl_history
34+
35+
# Transpiled code
36+
/lib

.travis.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
sudo: false
2+
23
language: node_js
34
node_js:
4-
- "iojs"
5-
before_install:
6-
- export CHROME_BIN=chromium-browser
7-
- export DISPLAY=:99.0
8-
- sh -e /etc/init.d/xvfb start
5+
- stable
6+
7+
cache:
8+
directories:
9+
- node_modules
10+
11+
branches:
12+
only:
13+
- master

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [HEAD] \(v0.4.0\)
2+
> Unreleased
3+
4+
- **Breaking:** Remove `keyOf` and `singlePropFrom` ([#26])
5+
- **Breaking:** Rename `mountable` to `componentOrElement` ([#26])
6+
- **Bugfix:** Pass through additional arguments to wrapped validators ([#26])
7+
8+
[HEAD]: https://github.com/react-bootstrap/react-prop-types/compare/v0.3.2...master
9+
[#26]: https://github.com/react-bootstrap/react-prop-types/pull/26
10+
11+
112
## [v0.3.2]
213
> 2016-05-13
314

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 react-bootstrap
3+
Copyright (c) 2015-present React-Bootstrap
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)