From 3182b1fb4c0ba0171493a8ce0da979abb63240e8 Mon Sep 17 00:00:00 2001 From: m03geek Date: Thu, 16 Sep 2021 12:11:03 +0300 Subject: [PATCH] fix(build): type generation for node fix --- .github/workflows/release-stable.yml | 2 ++ tsconfig.node.json | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/release-stable.yml b/.github/workflows/release-stable.yml index 6213f5f..81d6185 100644 --- a/.github/workflows/release-stable.yml +++ b/.github/workflows/release-stable.yml @@ -68,6 +68,8 @@ jobs: run: npm ci - name: Build run: npm run build --if-present + - name: Publish files + run: npm publish --dry-run - name: Publish run: npm publish --tag latest env: diff --git a/tsconfig.node.json b/tsconfig.node.json index 0e27ecb..d8558cb 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -1,5 +1,6 @@ { "$schema": "https://json.schemastore.org/tsconfig", + "extends": "./tsconfig.shared.json", "compilerOptions": { "outDir": "dist", "target": "es2018",