From 2573da7255d0f9f78e6d8bcc3ce967bbbcf2aa0a Mon Sep 17 00:00:00 2001 From: sakarthikeyan Date: Mon, 8 Jul 2024 22:42:48 +0530 Subject: [PATCH] Removing flow_typed from build script --- .github/workflows/main.yml | 3 --- .gitignore | 3 --- package.json | 2 +- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0d0a3f41..60a4fb81 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,8 +23,5 @@ jobs: with: useLockFile: false - - name: ▶️ Run flow-typed script - run: npm run flow-typed - - name: ▶️ Run build script run: npm run build diff --git a/.gitignore b/.gitignore index 5549061b..2c6eb938 100644 --- a/.gitignore +++ b/.gitignore @@ -46,9 +46,6 @@ jspm_packages # Yarn Integrity file .yarn-integrity -# Flow Typed -flow-typed - .idea .DS_Store diff --git a/package.json b/package.json index 6f627383..cd141440 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "webpack": "babel-node --plugins=transform-es2015-modules-commonjs ./node_modules/.bin/webpack --progress", "format": "prettier --write --ignore-unknown .", "format:check": "prettier --check .", - "test": "npm run format:check && npm run lint && npm run flow-typed && npm run flow", + "test": "npm run format:check && npm run lint && npm run flow", "build": "npm run test && npm run babel && npm run webpack", "release": "./publish.sh", "release:patch": "./publish.sh patch",