adding missing copyright headers (and excluding third party lib)

This commit is contained in:
Peter deHaan 2013-11-15 16:35:11 -08:00
Родитель 36bf9e1bf3
Коммит a986e7d210
4 изменённых файлов: 14 добавлений и 1 удалений

Просмотреть файл

@ -10,7 +10,8 @@ module.exports = function (grunt) {
copyright: {
files: [
"**/*.js",
"!**/node_modules/**"
"!node_modules/**",
"!client/emscrypt.js"
],
options: {
pattern: "This Source Code Form is subject to the terms of the Mozilla Public"

Просмотреть файл

@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var test = require('tap').test
var TestServer = require('../test_server')
var crypto = require('crypto')

Просмотреть файл

@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var fs = require('fs')
var path = require('path')
var test = require('tap').test

Просмотреть файл

@ -1,3 +1,7 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var cp = require('child_process')
var P = require('p-promise')
var request = require('request')