Skip to content
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
11 changes: 11 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,24 @@ samples
# QB JS SDK Docs
docs

# QB JS SDK tests
spec

# git
.git
.github
.gitignore

# other files (don't need for development)
.babelrc
.codeclimate.yml
.travis.yml
.jshintrc
.jshintignore
.editorconfig
.eslintignore
.eslintrc
bower.json
jsdoc.conf.json
karma.conf.js
gulpfile.js
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Check out our [API Reference](https://quickblox.github.io/quickblox-javascript-s
## Dependencies for browser

```html
<script src="https://unpkg.com/quickblox@2.13.2/quickblox.min.js"></script>
<script src="https://unpkg.com/quickblox@2.13.6/quickblox.min.js"></script>
```

## Bower and RequireJS
Expand Down Expand Up @@ -60,7 +60,7 @@ var QB2 = new QuickBlox();

# Documentation

You can look at it here https://quickblox.com/developers/Javascript
You can look at it here https://docs.quickblox.com/docs/js-quick-start

# Questions and feedback

Expand Down
4 changes: 0 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ var browserify = require('browserify');
var source = require('vinyl-source-stream');
var rename = require('gulp-rename');

var notify = require('gulp-notify');
var uglify = require('gulp-uglify-es').default;

gulp.task('build', function() {
Expand All @@ -21,12 +20,9 @@ gulp.task('build', function() {
.bundle()
.on('error', function(error) {
throw new Error(error);
notify('Failed when create a bundle.');
this.emit('end');
})
.pipe(source('quickblox.js'))
.pipe(gulp.dest('./'))
.pipe(notify('Build task is finished.'));
});

gulp.task('minify', function() {
Expand Down
Loading