diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index d5b28816..310a1503 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -97,7 +97,7 @@ jobs: env: BUILDARCH: ${{ matrix.arch }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npm run prebuild + run: npm run prebuild # code is not ready... if anyone needs it, I am open for PR # prebuild-cross: @@ -201,7 +201,7 @@ jobs: - name: Build types if: needs.version-check.outputs.changed == 'true' - run: npm run types + run: npm run types - run: npm publish --tag stable --workspace main --workspace transports/http3-quiche if: ${{ needs.version-check.outputs.changed == 'true' && github.ref == 'refs/heads/master' }} diff --git a/main/tsconfig.json b/main/tsconfig.json index ee732c7b..40c93d40 100644 --- a/main/tsconfig.json +++ b/main/tsconfig.json @@ -1,14 +1,9 @@ { "compilerOptions": { - "outDir": "dist", - "rootDir": "../", + "outDir": "dist" }, "extends": "../tsconfig.base.json", - "include": [ - "lib", - "test", - "../transports/http3-quiche/lib" - ], + "include": [ "lib" ], "exclude": [ "test/testinone.js" ] diff --git a/transports/http3-quiche/tsconfig.json b/transports/http3-quiche/tsconfig.json index 86dabcf4..3a0640f3 100644 --- a/transports/http3-quiche/tsconfig.json +++ b/transports/http3-quiche/tsconfig.json @@ -1,12 +1,10 @@ { "compilerOptions": { - "outDir": "dist", - "rootDir": "../.." + "outDir": "dist" }, "extends" : "../../tsconfig.base.json", "include": [ - "lib", - "../../main/lib" + "lib" ], "references": [{ "path": "../../main" }] }