From 30d65749085a4c4433e7f773190d836481deba33 Mon Sep 17 00:00:00 2001 From: Nick Raienko Date: Fri, 3 Jul 2015 01:19:20 +0300 Subject: [PATCH 1/2] Add headers where missed and update .gitignore with IntelliJ Webstorm directory --- .gitignore | 1 + src/executor/__tests__/directives.js | 9 +++++++++ src/type/index.js | 9 +++++++++ 3 files changed, 19 insertions(+) diff --git a/.gitignore b/.gitignore index 2187c4e8d1..3f1dac1ca2 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ lib node_modules npm-debug.log coverage +.idea diff --git a/src/executor/__tests__/directives.js b/src/executor/__tests__/directives.js index a11f506e81..0adca297b0 100644 --- a/src/executor/__tests__/directives.js +++ b/src/executor/__tests__/directives.js @@ -1,3 +1,12 @@ +/** + * Copyright (c) 2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + */ + import { expect } from 'chai'; import { execute } from '../executor'; import { describe, it } from 'mocha'; diff --git a/src/type/index.js b/src/type/index.js index 8657aebda9..ad542e1719 100644 --- a/src/type/index.js +++ b/src/type/index.js @@ -1,3 +1,12 @@ +/** + * Copyright (c) 2015, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + */ + export { GraphQLSchema } from './schema'; From 6d8002e79f29f25abbc410dc1afb14e8ace3987c Mon Sep 17 00:00:00 2001 From: Nick Raienko Date: Fri, 3 Jul 2015 07:17:19 +0300 Subject: [PATCH 2/2] .gitinore update --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3f1dac1ca2..74ff842d6c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,9 @@ *~ .*.haste_cache.* .DS_Store +.idea + lib node_modules npm-debug.log coverage -.idea