Skip to content

Commit 6bbae9c

Browse files
committed
update dev dependencies
1 parent f289101 commit 6bbae9c

8 files changed

+4924
-33
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 QuickResto
3+
Copyright (c) 2019 QuickResto
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "simple-jsonrpc-js",
33
"description": "simple jsonrpc client/server handler",
4-
"version": "0.0.10",
4+
"version": "1.0.0",
55
"license": "MIT",
66
"main": "./dist/simple-jsonrpc-js.min.js",
77
"ignore": [],

dist/simple-jsonrpc-js.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
var gulp = require('gulp'),
2-
//local web server
3-
webserver = require('gulp-webserver'),
4-
header = require('gulp-header');
5-
//compress
6-
var uglify = require('gulp-uglify'),
2+
connect = require('gulp-connect'),
3+
uglify = require('gulp-uglify'),
74
rename = require("gulp-rename");
85

96
gulp.task('compress', function () {
10-
gulp.src('simple-jsonrpc-js.js')
7+
return gulp.src('simple-jsonrpc-js.js')
118
.pipe(uglify())
129
.pipe(rename({
1310
suffix: '.min'
@@ -16,14 +13,10 @@ gulp.task('compress', function () {
1613
});
1714

1815
gulp.task('webserver', function () {
19-
gulp.src('./')
20-
.pipe(webserver({
21-
livereload: false,
22-
port: 8833,
23-
proxies: [{
24-
source: '/rpc',
25-
target: 'http://localhost:8888',
26-
}],
27-
directoryListing: false
28-
}));
29-
});
16+
return connect.server({
17+
name: 'Dev App',
18+
root: ['test', './'],
19+
port: 8833,
20+
livereload: false
21+
});
22+
});

0 commit comments

Comments
 (0)