[ez] Move copyright script to top level

This commit is contained in:
Lauren Tan
2023-11-02 12:43:33 -04:00
parent 5bd9642578
commit 0cc473fc9a
2 changed files with 8 additions and 2 deletions

View File

@@ -11,7 +11,7 @@
"scripts": {
"bundle:meta": "scripts/bundle-meta.sh",
"bundle:oss": "scripts/bundle-oss.sh",
"copy-to-forget-feedback": "scripts/copy-to-forget-feedback.sh",
"copyright": "node scripts/copyright.js",
"hash": "scripts/hash.sh",
"start": "yarn workspace playground run start",
"next": "yarn workspace playground run dev",

View File

@@ -23,7 +23,13 @@ const files = glob.sync("**/*.{js,ts,tsx,jsx}", {
"**/dist/**",
"**/node_modules/**",
"test262/**",
"**/__tests__/fixtures/**/*.js",
"react/**",
"forget-feedback/**",
"packages/js-fuzzer/**",
"**/tests/fixtures/**",
"**/__tests__/fixtures/**",
// Special case where we need to preserve a jest directive
"packages/forest-runtime/src/__tests__/DOM-test.ts",
],
});