Skip to content

Commit c567e6c

Browse files
committed
Scaffold: Normalize repository
1 parent e849e5b commit c567e6c

13 files changed

+59
-51
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ coverage
99
.idea
1010
sandbox
1111
test/out-fixtures/*
12+
test/output/
1213
test/watch-*.txt
1314
gulp.1

.npmignore

Lines changed: 0 additions & 12 deletions
This file was deleted.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Blaine Bublitz, Eric Schoffstall and other contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ environment:
1111
# node.js
1212
- nodejs_version: "0.10"
1313
- nodejs_version: "0.12"
14-
# io.js
15-
- nodejs_version: "1"
14+
- nodejs_version: "4"
15+
- nodejs_version: "5"
1616

1717
install:
1818
- ps: Install-Product node $env:nodejs_version
@@ -22,7 +22,7 @@ test_script:
2222
- node --version
2323
- npm --version
2424
- npm test
25-
25+
2626
build: off
2727

2828
# build version format

package.json

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,33 @@
11
{
22
"name": "gulp-cli",
3-
"description": "The streaming build system",
43
"version": "0.3.0",
5-
"author": "Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
4+
"description": "Command line interface for gulp",
5+
"author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
6+
"contributors": [],
7+
"homepage": "http://gulpjs.com",
8+
"repository": "gulpjs/gulp-cli",
9+
"license": "MIT",
10+
"man": "gulp.1",
11+
"engines": {
12+
"node": ">= 0.10"
13+
},
14+
"main": "index.js",
615
"bin": {
716
"gulp": "bin/gulp.js"
817
},
18+
"files": [
19+
"index.js",
20+
"lib",
21+
"bin",
22+
"completion"
23+
],
24+
"scripts": {
25+
"coveralls": "lab -r lcov | coveralls",
26+
"lint": "eslint . && jscs index.js bin/ lib/ test/",
27+
"prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
28+
"pretest": "npm run lint",
29+
"test": "lab test/*.js -cv"
30+
},
931
"dependencies": {
1032
"archy": "^1.0.0",
1133
"chalk": "^1.1.0",
@@ -34,27 +56,7 @@
3456
"lab": "^6.2.0",
3557
"marked-man": "^0.1.3"
3658
},
37-
"engines": {
38-
"node": ">= 0.9"
39-
},
40-
"files": [
41-
"index.js",
42-
"lib",
43-
"bin",
44-
"completion"
45-
],
46-
"homepage": "http://gulpjs.com",
47-
"license": "MIT",
48-
"man": "gulp.1",
49-
"repository": "gulpjs/gulp-cli",
50-
"scripts": {
51-
"coveralls": "lab -r lcov | coveralls",
52-
"lint": "eslint . && jscs index.js bin/ lib/ test/",
53-
"prepublish": "marked-man --name gulp docs/CLI.md > gulp.1",
54-
"pretest": "npm run lint",
55-
"test": "lab -cv"
56-
},
57-
"tags": [
59+
"keywords": [
5860
"build",
5961
"stream",
6062
"system",

test/fixtures/gulpfile-2.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
var gulp = require('gulp');
33

44
function noop(cb) {
5-
return cb()
5+
return cb();
66
}
77

8-
gulp.task('default', gulp.series(noop));
8+
gulp.task('default', gulp.series(noop));

test/fixtures/gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
var gulp = require('gulp');
44

55
function noop(cb) {
6-
return cb()
6+
return cb();
77
}
88
function described() {}
99
function errorFunction() {
1010
throw new Error('Error!');
1111
}
1212
function anon(cb) {
13-
return cb()
13+
return cb();
1414
}
1515
described.description = 'description';
1616

test/fixtures/test-module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
console.log('inside test module');
22
exports = function() {
33
console.log('inside test module function');
4-
};
4+
};

test/flags-continue.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
var lab = exports.lab = require('lab').script();
44
var code = require('code');
55

6-
var fs = require('fs');
76
var child = require('child_process');
87

98
lab.experiment('flag: --continue', function() {

test/flags-gulpfile.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
var lab = exports.lab = require('lab').script();
44
var code = require('code');
55

6-
var fs = require('fs');
76
var child = require('child_process');
87

98
lab.experiment('flag: --gulpfile', function() {

0 commit comments

Comments
 (0)