mirror of
https://github.com/Mibew/first-message-plugin.git
synced 2025-04-04 18:27:06 +03:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
6f817fb777 | |||
209ce6ae64 | |||
77b8ad0b9e |
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
|
||||
|
@ -16,14 +16,12 @@ gulp.task('prepare-release', function() {
|
||||
.pipe(tar('first-message-plugin-' + version + '.tar'))
|
||||
.pipe(gzip())
|
||||
)
|
||||
.pipe(chmod(644))
|
||||
.pipe(chmod(0644))
|
||||
.pipe(gulp.dest('release'));
|
||||
});
|
||||
|
||||
// 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.
|
||||
|
10
package.json
10
package.json
@ -1,12 +1,12 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"devDependencies": {
|
||||
"gulp": "~3.9.0",
|
||||
"event-stream": "~3.3.1",
|
||||
"gulp": "~4.0.0",
|
||||
"event-stream": "3.3.4",
|
||||
"gulp-zip": "~3.0.2",
|
||||
"gulp-tar": "~1.4.0",
|
||||
"gulp-tar": "~3.1.0",
|
||||
"gulp-gzip": "~1.1.0",
|
||||
"gulp-chmod": "~1.2.0",
|
||||
"gulp-chmod": "~3.0.0",
|
||||
"gulp-rename": "~1.2.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user