Skip to content

Commit

Permalink
add dot files
Browse files Browse the repository at this point in the history
  • Loading branch information
Shady Khalifa committed Aug 14, 2018
1 parent 68ce5be commit 4095ffa
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# 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

#ide
.vscode
.idea

# node-waf configuration
.lock-wscript

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

# 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

# NPM
src
example
gulpfile.js
.prettierrc
.travis.yml
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

{
"semi": true,
"useTabs": false,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "all"
}
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: node_js
node_js:
- "7"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
- gulp build
script:
- npm test
after_success:
- npm run test:coverage
- "npm install coveralls && cat ./coverage/lcov.info | coveralls"

0 comments on commit 4095ffa

Please sign in to comment.