From 7ca59a1d1358abd5c0840f09d0cd58739d2c88aa Mon Sep 17 00:00:00 2001 From: Naman Goel Date: Fri, 17 Nov 2023 02:29:03 -0800 Subject: [PATCH] copyright for fixtures --- packages/rollup-plugin/__tests__/__fixtures__/index.js | 7 +++++++ packages/rollup-plugin/__tests__/__fixtures__/npmStyles.js | 7 +++++++ .../rollup-plugin/__tests__/__fixtures__/otherStyles.js | 7 +++++++ packages/webpack-plugin/__tests__/__fixtures__/index.js | 7 +++++++ .../webpack-plugin/__tests__/__fixtures__/npmStyles.js | 7 +++++++ .../webpack-plugin/__tests__/__fixtures__/otherStyles.js | 7 +++++++ .../__tests__/__fixtures__/webpack.config.js | 7 +++++++ 7 files changed, 49 insertions(+) diff --git a/packages/rollup-plugin/__tests__/__fixtures__/index.js b/packages/rollup-plugin/__tests__/__fixtures__/index.js index ef239b710..c528a1af0 100644 --- a/packages/rollup-plugin/__tests__/__fixtures__/index.js +++ b/packages/rollup-plugin/__tests__/__fixtures__/index.js @@ -1,3 +1,10 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + // index.js 'use strict'; diff --git a/packages/rollup-plugin/__tests__/__fixtures__/npmStyles.js b/packages/rollup-plugin/__tests__/__fixtures__/npmStyles.js index 56280c4f5..ffdc172aa 100644 --- a/packages/rollup-plugin/__tests__/__fixtures__/npmStyles.js +++ b/packages/rollup-plugin/__tests__/__fixtures__/npmStyles.js @@ -1,3 +1,10 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + // npmStyles.js 'use strict'; diff --git a/packages/rollup-plugin/__tests__/__fixtures__/otherStyles.js b/packages/rollup-plugin/__tests__/__fixtures__/otherStyles.js index fe36f3ab7..52a751a0d 100644 --- a/packages/rollup-plugin/__tests__/__fixtures__/otherStyles.js +++ b/packages/rollup-plugin/__tests__/__fixtures__/otherStyles.js @@ -1,3 +1,10 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + // otherStyles.js 'use strict'; diff --git a/packages/webpack-plugin/__tests__/__fixtures__/index.js b/packages/webpack-plugin/__tests__/__fixtures__/index.js index ef239b710..c528a1af0 100644 --- a/packages/webpack-plugin/__tests__/__fixtures__/index.js +++ b/packages/webpack-plugin/__tests__/__fixtures__/index.js @@ -1,3 +1,10 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + // index.js 'use strict'; diff --git a/packages/webpack-plugin/__tests__/__fixtures__/npmStyles.js b/packages/webpack-plugin/__tests__/__fixtures__/npmStyles.js index 56280c4f5..ffdc172aa 100644 --- a/packages/webpack-plugin/__tests__/__fixtures__/npmStyles.js +++ b/packages/webpack-plugin/__tests__/__fixtures__/npmStyles.js @@ -1,3 +1,10 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + // npmStyles.js 'use strict'; diff --git a/packages/webpack-plugin/__tests__/__fixtures__/otherStyles.js b/packages/webpack-plugin/__tests__/__fixtures__/otherStyles.js index fe36f3ab7..52a751a0d 100644 --- a/packages/webpack-plugin/__tests__/__fixtures__/otherStyles.js +++ b/packages/webpack-plugin/__tests__/__fixtures__/otherStyles.js @@ -1,3 +1,10 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + // otherStyles.js 'use strict'; diff --git a/packages/webpack-plugin/__tests__/__fixtures__/webpack.config.js b/packages/webpack-plugin/__tests__/__fixtures__/webpack.config.js index bdbd2ad17..41142a93b 100644 --- a/packages/webpack-plugin/__tests__/__fixtures__/webpack.config.js +++ b/packages/webpack-plugin/__tests__/__fixtures__/webpack.config.js @@ -1,3 +1,10 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + const path = require('path'); const StylexPlugin = require('../../src/index');