From ec43a23d14a8635efb615413481b13acbe7e5059 Mon Sep 17 00:00:00 2001 From: Nogic <24802730+nogic1008@users.noreply.github.com> Date: Fri, 30 Oct 2020 12:10:13 +0900 Subject: [PATCH] chore: remove refs to /lib --- .github/workflows/nodejs.yml | 2 +- .gitignore | 1 - package.json | 2 +- tsconfig.json | 1 - 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 973c5502..9dcf71b6 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -78,5 +78,5 @@ jobs: uses: technote-space/release-github-actions@v6 with: BRANCH_NAME: releases/${MAJOR} - CLEAN_TARGETS: .[!.]*,__tests__,coverage,images,lib,node_modules,src,*.js,*.ts,*.json,*.lock,_config.yml + CLEAN_TARGETS: .[!.]*,__tests__,coverage,images,node_modules,src,*.ts,*.json,*.lock,_config.yml COMMIT_MESSAGE: 'build: release ${{ steps.get_tag.outputs.version }} via ${{ github.sha }}' diff --git a/.gitignore b/.gitignore index 8c0c3467..040f0dbd 100644 --- a/.gitignore +++ b/.gitignore @@ -68,5 +68,4 @@ typings/ Thumbs.db # Ignore built files -lib/ dist/ diff --git a/package.json b/package.json index d8dbdeed..37a95584 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "fix:eslint": "yarn lint:eslint --fix", "fix:prettier": "yarn lint:prettier --write", "lint": "run-p lint:*", - "lint:eslint": "eslint --ext .ts,.js --ignore-path .gitignore .", + "lint:eslint": "eslint --ext .ts --ignore-path .gitignore .", "lint:prettier": "prettier --ignore-path .gitignore -l \"**/*.{json,yaml,yml}\"", "test": "jest" }, diff --git a/tsconfig.json b/tsconfig.json index 8e5b4f8a..6960d2c8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,6 @@ "target": "es2018", "lib": ["es2018"], "moduleResolution": "node", - "outDir": "./lib", "rootDir": "./src", "strict": true, "noImplicitAny": true,