Skip to content

Commit

Permalink
feat(all): initial build
Browse files Browse the repository at this point in the history
  • Loading branch information
Temzasse committed Mar 20, 2017
1 parent 8aec3a3 commit 1fe7b5f
Show file tree
Hide file tree
Showing 52 changed files with 18,243 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
dist
.nyc_output

# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history
6 changes: 6 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.babelrc
.eslintrc
.gitignore
.npmignore
src
webpack.config.js
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '7'
- '6'
- '4'
before_script:
- npm prune
script:
- npm run build
after_success:
- npm run semantic-release
branches:
only:
- master
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
# react-component-kit
# react-components-kit
A collection of reusable React UI components

## Contributing
Make commits using `npm run commit` which uses [commitizen](https://github.com/commitizen/cz-cli)
helper to format the commit messages partly based on these [rules](https://gist.github.com/stephenparish/9941e89d80e2bc58a153).

This way [semantic-release](https://github.com/semantic-release/semantic-release)
knows how to bumb up the version number correctly.

In order to get `react-components-kit` UI components to work you have to link
the local npm package by first doing `npm link` here in the root of the project
and then cd to `/examples` and do `npm link react-components-kit` to add the
package to node_modules.
18 changes: 18 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env
npm-debug.log*
yarn-debug.log*
yarn-error.log*

Loading

0 comments on commit 1fe7b5f

Please sign in to comment.