From 203f4a6cf1265e936663ea0f1369c61b7e32f27e Mon Sep 17 00:00:00 2001 From: Luke Bennett Date: Sun, 13 Jun 2021 04:20:24 +0100 Subject: [PATCH] ci: remove missing needs --- .github/workflows/publish.yaml | 1 - package.json | 2 +- tsconfig.json | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 649259b..ddc5716 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -6,7 +6,6 @@ on: jobs: release: runs-on: ubuntu-latest - needs: build steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 diff --git a/package.json b/package.json index d0478f7..30ef319 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "ccash-client-js", "version": "1.2.0", "description": "JS HTTP client for CCash", - "main": "./dist/cjs", + "main": "./dist", "publishConfig": { "registry": "https://registry.npmjs.org/" }, diff --git a/tsconfig.json b/tsconfig.json index 3395b32..6dd49a3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "outDir": "./dist/cjs", + "outDir": "./dist", "target": "es2015", "module": "commonjs", "declaration": true,