Skip to content

Commit

Permalink
up pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
joseluisq committed Jul 1, 2017
1 parent 3762cf9 commit d0b41cf
Show file tree
Hide file tree
Showing 18 changed files with 4,341 additions and 408 deletions.
13 changes: 0 additions & 13 deletions .editorconfig

This file was deleted.

16 changes: 0 additions & 16 deletions .eslintrc

This file was deleted.

78 changes: 63 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,66 @@
/seqr.js
!src
node_modules
bower_components
coverage
log
.tmp
*#
*~
/*.js
dist

# Exclude
!/*.config.js
!/index.js
!/test.js

# Logs
logs
*.log
**/.DS_STORE
**/.DS_Store
*.swo
*.swp
*.swn
*.swm
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

# 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
30 changes: 20 additions & 10 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,38 @@
app
src
test

*#
node_modules
coverage
bower_components
ssl
nbproject
bower.json
.DS_STORE
.DS_Store
*~
*.swo
*.swp
*.swn
*.swm
*~
.idea
nbproject
.git
.gitattributes
.travis.yml
.gitignore
.idea
.tmp
.jshintrc
.eslintrc
scripts
bower.json
webpack.config.js
.editorconfig
CONTRIBUTING.md
*.md
**/*.md
test
__tests__
.babelrc
.eslintrc
karma.conf.js
test.js
scripts
coverage
*.webpack.js
*.config.js
.nyc_output
yarn.lock
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,23 @@ node_js:
- '5'
- '6'
- '7'
- '8'

git:
depth: 1

branches:
only:
- master
- /^greenkeeper-/
- /^greenkeeper/.*$/

cache:
yarn: true
directories:
- node_modules

notifications:
email: false

after_success: npm run coverage
after_success:
- yarn coverage
2 changes: 1 addition & 1 deletion license.md → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 José Luis Quintana <http://git.io/joseluisq>
Copyright (c) 2017 José Luis Quintana <http://git.io/joseluisq>

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:

Expand Down
24 changes: 7 additions & 17 deletions readme.md → README.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,28 @@
# seqr [![Build Status](https://travis-ci.org/joseluisq/seqr.svg?branch=master)](https://travis-ci.org/joseluisq/seqr) [![Coverage Status](https://coveralls.io/repos/github/joseluisq/seqr/badge.svg?branch=master&v1)](https://coveralls.io/github/joseluisq/seqr?branch=master) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)
# Seqr [![Build Status](https://travis-ci.org/joseluisq/seqr.svg?branch=master)](https://travis-ci.org/joseluisq/seqr) [![Coverage Status](https://coveralls.io/repos/github/joseluisq/seqr/badge.svg?branch=master&v1)](https://coveralls.io/github/joseluisq/seqr?branch=master) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)

> A small [ES6](https://babeljs.io/docs/learn-es2015/) package for execute functions sequentially.
## Install

#### CommonJS
[Yarn](https://github.com/yarnpkg/)

```sh
npm install seqr --save-dev
```

#### AMD

```js
requirejs(['seqr'], Seqr => {

})
yarn add seqr --dev
```

#### Browser
[NPM](https://www.npmjs.com/)

#### Bower
```sh
bower install seqr --save
npm install seqr --save-dev
```

##### CDN
[UMD](https://github.com/umdjs/umd/) file is also available on [unpkg](https://unpkg.com):

```html
<script src="https://unpkg.com/seqr/dist/seqr.min.js"></script>
```

You can use the library via `window.Seqr`.
You can use the library via `window.seqr`.

## Usage

Expand Down Expand Up @@ -70,4 +60,4 @@ seqr.then(done => {
## License
MIT license

© 2016 [José Luis Quintana](http://git.io/joseluisq)
© 2017 [José Luis Quintana](http://git.io/joseluisq)
32 changes: 0 additions & 32 deletions bower.json

This file was deleted.

Loading

0 comments on commit d0b41cf

Please sign in to comment.