Skip to content

Commit

Permalink
Merge pull request #25 from jeremenichelli/5.0.0
Browse files Browse the repository at this point in the history
5.0.0
  • Loading branch information
jeremenichelli authored Aug 6, 2019
2 parents df2f672 + 485fa53 commit 0535f28
Show file tree
Hide file tree
Showing 20 changed files with 10,903 additions and 1,012 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

254 changes: 0 additions & 254 deletions .eslintrc.json

This file was deleted.

1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

37 changes: 34 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,63 @@
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# package distribution folder
dist

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# 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

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

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

# Dependency directory
node_modules
# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next
10 changes: 0 additions & 10 deletions .npmignore

This file was deleted.

17 changes: 17 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"arrowParens": "always",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
}
16 changes: 14 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
language: node_js

node_js:
- "7.10.0"
script: npm test
- "10"

branches:
only:
- master

cache: yarn

script: yarn test

after_success:
- yarn build
- yarn release
Loading

0 comments on commit 0535f28

Please sign in to comment.