diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf770d8..3b9ee62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,9 +42,6 @@ jobs: - name: Build run: bun run build - - name: Compile - run: bun run compile - build-node: name: Build (node) runs-on: ubuntu-latest @@ -69,6 +66,7 @@ jobs: run: npm run build:lib publish: + name: Publish needs: [build-bun, build-node] runs-on: ubuntu-latest permissions: diff --git a/package.json b/package.json index 679cfd7..3ebdbdc 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,6 @@ "build": "npx rollup -c rollup.cli.mjs", "build:watch": "npx rollup -c rollup.cli.mjs -w", "build:lib": "npx rollup -c rollup.lib.mjs && npx api-extractor run --local", - "compile": "bun build ./dist/webwisp.js --compile --outfile=./dist/webwisp -e playwright -e openai", "format": "npx prettier --write ./src/**/*.ts", "lint": "npx eslint ./src/**/*.ts" },