From 27d2b0f77dc0164a35317cc7dae310fb3d6d9627 Mon Sep 17 00:00:00 2001 From: Sebastian Markbage Date: Wed, 30 Oct 2019 16:17:35 -0700 Subject: [PATCH 1/6] Change demo to server --- fixtures/flight-browser/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fixtures/flight-browser/index.html b/fixtures/flight-browser/index.html index 5f522a9b3a1a0..aa6e02cff32be 100644 --- a/fixtures/flight-browser/index.html +++ b/fixtures/flight-browser/index.html @@ -18,7 +18,7 @@

Flight Example

- + + From 141bb4daf4abcb4c87cd4acaf4bb002acf85af9f Mon Sep 17 00:00:00 2001 From: Sebastian Markbage Date: Wed, 30 Oct 2019 22:44:13 -0700 Subject: [PATCH 6/6] Add Promise/Uint8Array to lint rule I'll probably end up deleting these deps later but they're here for now. --- scripts/rollup/validate/eslintrc.cjs.js | 4 ++++ scripts/rollup/validate/eslintrc.fb.js | 4 ++++ scripts/rollup/validate/eslintrc.umd.js | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/scripts/rollup/validate/eslintrc.cjs.js b/scripts/rollup/validate/eslintrc.cjs.js index 6d1089b73788e..725bb040e3eb8 100644 --- a/scripts/rollup/validate/eslintrc.cjs.js +++ b/scripts/rollup/validate/eslintrc.cjs.js @@ -28,6 +28,10 @@ module.exports = { SharedArrayBuffer: true, Int32Array: true, ArrayBuffer: true, + + // Flight + Uint8Array: true, + Promise: true, }, parserOptions: { ecmaVersion: 5, diff --git a/scripts/rollup/validate/eslintrc.fb.js b/scripts/rollup/validate/eslintrc.fb.js index 57daf502c2218..f8965a81ff49a 100644 --- a/scripts/rollup/validate/eslintrc.fb.js +++ b/scripts/rollup/validate/eslintrc.fb.js @@ -29,6 +29,10 @@ module.exports = { SharedArrayBuffer: true, Int32Array: true, ArrayBuffer: true, + + // Flight + Uint8Array: true, + Promise: true, }, parserOptions: { ecmaVersion: 5, diff --git a/scripts/rollup/validate/eslintrc.umd.js b/scripts/rollup/validate/eslintrc.umd.js index 57645c7a34c67..ffaeb9488e0b5 100644 --- a/scripts/rollup/validate/eslintrc.umd.js +++ b/scripts/rollup/validate/eslintrc.umd.js @@ -31,6 +31,10 @@ module.exports = { SharedArrayBuffer: true, Int32Array: true, ArrayBuffer: true, + + // Flight + Uint8Array: true, + Promise: true, }, parserOptions: { ecmaVersion: 5,