Skip to content

Commit

Permalink
Implement 1.0.0 rewrite.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaridmargolin committed Jun 26, 2017
0 parents commit ac6ebc1
Show file tree
Hide file tree
Showing 20 changed files with 3,013 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.DS_Store
.grunt

lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
sauce_connect.log

/.nyc_output
/node_modules
/.coverage
/build
19 changes: 19 additions & 0 deletions .neutrinorc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
'use strict'

/* -----------------------------------------------------------------------------
* dependencies
* -------------------------------------------------------------------------- */

// 3rd party
const presetLibrary = require('neutrino-preset-library')

/* -----------------------------------------------------------------------------
* config
* -------------------------------------------------------------------------- */

module.exports = (neutrino) => {
neutrino.use(presetLibrary, {
library: 'TaskQueue',
filename: 'task-queue.js'
})
}
22 changes: 22 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.DS_Store
.grunt

lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
sauce_connect.log

/.nyc_output
/node_modules
/.coverage
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
sudo: required
dist: trusty

language: node_js
node_js:
- 8.0.0

script: npm run test

before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start

after_success:
- npm run publish-cov
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<h1>task-queue.js</h1>
<div>
<p>Extensible async task queue.</p>
<div>
<a href="https://travis-ci.org/jaridmargolin/task-queue.js"><img src="https://travis-ci.org/jaridmargolin/task-queue.js.svg?branch=master" alt="Build Status"></a>
<a href="https://coveralls.io/github/jaridmargolin/task-queue.js?branch=master"><img src="https://coveralls.io/repos/github/jaridmargolin/task-queue.js/badge.svg?branch=master" alt="Coverage Status"></a>
<a href="http://standardjs.com/"><img src="https://img.shields.io/badge/code%20style-standard-brightgreen.svg" alt="Standard - JavaScript Style Guide"></a>
</div>
<div>
<a href="https://npmjs.org/package/task-queue.js"><img src="https://img.shields.io/npm/v/task-queue.js.svg" alt="NPM task-queue.js package"></a>
<a href="https://david-dm.org/jaridmargolin/task-queue.js"><img src="https://david-dm.org/jaridmargolin/task-queue.js.svg" alt="Dependency Status"></a>
<a href="https://david-dm.org/jaridmargolin/task-queue.js#info=devDependencies"><img src="https://david-dm.org/jaridmargolin/task-queue.js/dev-status.svg" alt="devDependency Status"></a>
</div>
<a href="http://jaridmargolin.github.io/task-queue.js">View Documentation</a>
</div>
<br>


## License

The MIT License (MIT) Copyright (c) Jarid Margolin

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 comments on commit ac6ebc1

Please sign in to comment.