mirror of
https://github.com/Mibew/auto-reply-plugin.git
synced 2025-04-06 07:30:11 +03:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
068d9fa10f | |||
c347db9d79 | |||
7239af9b7f | |||
86fd90ca16 | |||
8852173e4b |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
||||
# Do not index node.js modules that are used for building
|
||||
node_modules
|
||||
package-lock.json
|
||||
|
||||
# Do not index releases
|
||||
release
|
||||
|
@ -61,7 +61,7 @@ class Plugin extends \Mibew\Plugin\AbstractPlugin implements \Mibew\Plugin\Plugi
|
||||
*/
|
||||
public static function getVersion()
|
||||
{
|
||||
return '0.1.1';
|
||||
return '0.1.2';
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -37,7 +37,7 @@ The plugin can be configured with values in "`<Mibew root>`/configs/config.yml"
|
||||
|
||||
Type: `Integer`
|
||||
|
||||
Default: `60`
|
||||
Default: `300`
|
||||
|
||||
Specify time in seconds to wait before automatically reply.
|
||||
|
||||
|
@ -6,7 +6,7 @@ var eventStream = require('event-stream'),
|
||||
gzip = require('gulp-gzip'),
|
||||
rename = require('gulp-rename');
|
||||
|
||||
gulp.task('prepare-release', [], function() {
|
||||
gulp.task('prepare-release', function() {
|
||||
var version = require('./package.json').version;
|
||||
|
||||
return eventStream.merge(
|
||||
@ -21,9 +21,7 @@ gulp.task('prepare-release', [], function() {
|
||||
});
|
||||
|
||||
// Builds and packs plugins sources
|
||||
gulp.task('default', ['prepare-release'], function() {
|
||||
// The "default" task is just an alias for "prepare-release" task.
|
||||
});
|
||||
gulp.task('default', gulp.series('prepare-release'));
|
||||
|
||||
/**
|
||||
* Returns files stream with the plugin sources.
|
||||
|
18
package.json
18
package.json
@ -1,12 +1,12 @@
|
||||
{
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"devDependencies": {
|
||||
"gulp": ">3.8.10",
|
||||
"event-stream": ">3.1.7",
|
||||
"gulp-zip": ">2.0.2",
|
||||
"gulp-tar": ">1.3.1",
|
||||
"gulp-gzip": ">0.0.8",
|
||||
"gulp-chmod": ">1.2.0",
|
||||
"gulp-rename": ">1.2.0"
|
||||
"gulp": "~4.0.0",
|
||||
"event-stream": "~3.1.7",
|
||||
"gulp-zip": "~2.0.2",
|
||||
"gulp-tar": "~3.1.0",
|
||||
"gulp-gzip": "~0.0.8",
|
||||
"gulp-chmod": "~3.0.0",
|
||||
"gulp-rename": "~1.2.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user