Skip to content

Commit f2ed81e

Browse files
authored
Merge pull request #10 from synapsestudios/all-around-updates
All around updates
2 parents 45864d7 + 157d48d commit f2ed81e

50 files changed

Lines changed: 5459 additions & 476 deletions

Some content is hidden

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

.babelrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"comments": false,
3+
"plugins": [
4+
"transform-object-rest-spread",
5+
"transform-react-jsx",
6+
"transform-class-properties"
7+
],
8+
"presets": [
9+
"es2015"
10+
]
11+
}

.editorconfig

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,20 @@
55
root = true
66

77
[*]
8-
indent_style = space
8+
charset = utf-8
9+
end_of_line = lf
910
indent_size = 2
11+
indent_style = space
12+
insert_final_newline = true
13+
max_line_length = 80
14+
trim_trailing_whitespace = true
15+
16+
[*.styl]
17+
indent_size = 4
1018

1119
[*.md]
20+
max_line_length = 0
1221
trim_trailing_whitespace = false
22+
23+
[COMMIT_EDITMSG]
24+
max_line_length = 0

.eslintignore

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

.eslintrc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
{
2-
"extends": "airbnb",
3-
"rules": {
4-
"max-len": [2, 120, 2]
5-
}
2+
"extends": "react-app",
63
}

.gitignore

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
demo-build
2-
node_modules
3-
npm-debug.log
4-
dist
5-
lib
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# production
7+
/lib
8+
/.out
9+
/styles/*.css
10+
11+
# misc
12+
.DS_Store
13+
.env
14+
npm-debug.log*
15+
yarn-debug.log*
16+
yarn-error.log*

.lintstagedrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"{src, storybook}/**/*.js": [
3+
"eslint",
4+
"prettier --single-quote --trailing-comma es5 --write",
5+
"git add"
6+
]
7+
}

.npmignore

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
*.jsx
2-
node_modules
3-
npm-debug.log
4-
demo-build
5-
src
6-
.babelrc
71
npm-debug.log*
2+
src
3+
test
84
_vimrc_local.vim
9-
.npm
10-
.git
5+
.babelrc
6+
.editorconfig
117
.eslintcache
8+
.git
9+
.lintstagedrc
1210
.node_repl_history
11+
.npm

.storybook/config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { configure } from '@kadira/storybook';
2+
3+
function loadStories() {
4+
require('../storybook/stories');
5+
}
6+
7+
configure(loadStories, module);

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
CHANGELOG
22
=========
3+
## v3.0.0
4+
* Update for React v15.5 deprecation warnings: PropTypes is now a separate `prop-types` package
5+
* Added prettier formatting
6+
* Updated all dependencies– most notably babel v5 -> v6.
7+
* Added storybook for demo/gh-pages/development purposes (no more webpack config!)
8+
9+
## v2.5.0
310

411
## v2.4.3
512
* Fix issue with undefined variable

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
The MIT License (MIT)
1+
MIT License
22

3-
Copyright (c) 2016 Synapse Studios, LLC
3+
Copyright (c) 2017 Synapse Studios and contributors
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)