Skip to content
This repository has been archived by the owner on Mar 15, 2023. It is now read-only.

Update to new plugin infrastructure #99

Merged
merged 1 commit into from
Dec 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .babelrc

This file was deleted.

4 changes: 0 additions & 4 deletions .codeclimate.yml

This file was deleted.

70 changes: 21 additions & 49 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,60 +1,32 @@
# === Node ===
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
node_modules

# === Mac ===
.DS_Store
.AppleDouble
.LSOverride

# Icon must ends with two \r.
Icon

# Logs
logs
*.log

# Thumbnails
._*
# Runtime data
pids
*.pid
*.seed

# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# === Vim ===
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
*.un~
Session.vim
.netrwhist
*~
# Coverage directory used by tools like istanbul
coverage

# === Sublime ===
# workspace files are user-specific
*.sublime-workspace
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# project files should be checked into the repository, unless a significant
# proportion of contributors will probably not be using SublimeText
# *.sublime-project
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# === Webstorm ===
.idea
# Dependency directory
# Commenting this out is preferred by some people, see
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
node_modules

# node-waf configuration
# Users Environment Variables
.lock-wscript

# Coverage directory used by tools like istanbul
coverage

# The compiled/babelified modules
lib/
dist/
6 changes: 2 additions & 4 deletions .istanbul.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
verbose: false
instrumentation:
root: src/
excludes:
- lib/
root: ./lib/
include-all-sources: true
reporting:
print: summary
Expand All @@ -14,4 +12,4 @@ reporting:
statements: [50, 80]
lines: [50, 80]
functions: [50, 80]
branches: [50, 80]
branches: [50, 80]
12 changes: 6 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.babelrc
.istanbul.yml
.travis.yml
.editorconfig
.jshintrc
.travis.yml
.istanbul.yml
.babelrc
.idea/
src/
.vscode/
test/
!lib/
coverage/
.github/
coverage
11 changes: 0 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,12 @@ language: node_js
node_js:
- node
- '6'
- '4'
addons:
code_climate:
repo_token: db77b58022717b6f1287d1af327a41a58064dfd0b80cf37ecb5e67a866607c83
apt:
sources:
- sourceline: 'deb [ arch=amd64 ] http://repo.mongodb.org/apt/ubuntu precise/mongodb-org/3.4 multiverse'
packages:
- mongodb-org-server
before_script:
- 'npm install -g codeclimate-test-reporter'
- mkdir db/
- mongod --dbpath db/ &
after_script:
- 'codeclimate-test-reporter < coverage/lcov.info'
notifications:
email: false
slack:
rooms:
secure: ltXCdo0rpead7PVIy2v5BjQDhSIZ3dPOX4sZKJwIg0H8SAeVaDjh2EgogV5/yQVhkX2V8UmFJKHVTFuEU7iUgZf5rsInxPBPNSIk13ICVcCZskBiB/XvEfyAOZg1JIMbMz4VFlN9t2iOAh8dCEXAH/MG3EAHuqueUCJLQ9Oyqw8=
264 changes: 132 additions & 132 deletions CHANGELOG.md

Large diffs are not rendered by default.

Loading