Skip to content

Commit fd8dbd9

Browse files
committed
Added Y! license string to source files
1 parent 17e2159 commit fd8dbd9

File tree

15 files changed

+77
-4
lines changed

15 files changed

+77
-4
lines changed

bin/shifter

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#!/usr/bin/env node
22

3+
/*
4+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
5+
Code licensed under the BSD License:
6+
http://yuilibrary.com/license/
7+
*/
8+
39
var path = require('path');
410
var shifter = require(path.join('../lib'));
511

lib/ant.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
6+
17
var log = require('./log'),
28
path = require('path'),
39
pack = require('./pack'),

lib/builder.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
16
var path = require('path'),
27
fs = require('fs'),
38
log = require('./log'),

lib/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
16
var log = require('./log'),
27
fs = require('fs'),
38
path = require('path'),

lib/log.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
16
require('colors');
27

38

lib/module.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
16
var Stack = require('./stack').Stack,
27
path = require('path'),
38
fs = require('fs'),

lib/pack.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
16
var path = require('path'),
27
fs = require('fs'),
38
log = require('./log'),

lib/stack.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
16
var Stack = function () {
27
this.errors = [];
38
this.finished = 0;

lib/tasks.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
26
var fs = require('fs'),
37
path = require('path');
48

lib/tasks/compressor.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
26
var compressor = require('yuicompressor');
37
var path = require('path');
48
var jar = path.join(__dirname, '../../', 'files', 'yuicompressor-2.4.4.jar');

lib/tasks/coverage.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
26
var coverage = require('yuitest-coverage');
37

48
exports.coverage = function(options, blob, done) {

lib/tasks/cssstamp.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
26

37
exports.cssstamp = function(options, blob, done) {
48
options = options || {};

lib/tasks/jsstamp.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
16

27
exports.jsstamp = function(options, blob, done) {
38
options = options || {};

lib/tasks/wrap.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
16
var Stack = require('../stack').Stack,
27
path = require('path'),
38
fs = require('fs'),

lib/timer.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3+
Code licensed under the BSD License:
4+
http://yuilibrary.com/license/
5+
*/
16
exports.calc = function(start, end) {
27
var total = end - start,
38
diff = {}, str = '';

0 commit comments

Comments
 (0)