From f4b4f74af8f6965ce65452bb4888e85d2e09d344 Mon Sep 17 00:00:00 2001 From: RanolP Date: Sat, 27 Apr 2024 23:43:17 +0900 Subject: [PATCH] ci: remove useless steps --- .github/workflows/follow-up.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/follow-up.yaml b/.github/workflows/follow-up.yaml index 8d15acf..b07bed5 100644 --- a/.github/workflows/follow-up.yaml +++ b/.github/workflows/follow-up.yaml @@ -42,15 +42,6 @@ jobs: for file in $(find src/cjs -type f -name *.ts); do mv $file "$(dirname $file)/$(basename $file .ts).cts" done - for file in `find src -type f`; do - sed -ri "s/from '([^']+)\/apis'/from '\1\/apis\/index.js'/" $file - sed -ri "s/from '([^']+)\/models'/from '\1\/models\/index.js'/" $file - sed -ri "s/from '([^']+)'/from '\1.js'/" $file - sed -ri "s/from '([^']+\.js)\.js'/from '\1'/" $file - done - - name: Tricky TSC Safety - run: | - sed -i 's/fetchApi(): FetchAPI/fetchApi(): FetchAPI | undefined/' src/runtime.ts - name: Build run: npm run build - name: Update Version