From ccad472e1a3e2423e02b8187da9e3d627b924e3b Mon Sep 17 00:00:00 2001 From: LewdHuTao Date: Wed, 29 May 2024 22:47:11 +0800 Subject: [PATCH] test --- .npmignore | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- tsconfig.json | 42 ++++++++++++++++++++++-------------------- 4 files changed, 27 insertions(+), 23 deletions(-) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..1ad53f8 --- /dev/null +++ b/.npmignore @@ -0,0 +1,2 @@ +test +src \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 686858c..c3991a4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "llyrics", - "version": "1.1.3-rc", + "version": "1.1.4-rc", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "llyrics", - "version": "1.1.3-rc", + "version": "1.1.4-rc", "license": "ISC", "dependencies": { "axios": "^1.7.2" diff --git a/package.json b/package.json index cce8d4a..953d211 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "llyrics", - "version": "1.1.3-rc", + "version": "1.1.4-rc", "description": "A simple package to fetch lyrics from Genius API", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", diff --git a/tsconfig.json b/tsconfig.json index 63d1acc..5b3de5f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,27 +1,29 @@ { "compilerOptions": { - "target": "ES2022", - "module": "commonjs", - "declaration": true, - "declarationMap": true, - "sourceMap": true, - "outDir": "dist/src", - "strict": true, - "strictNullChecks": true, - "strictFunctionTypes": true, - "strictBindCallApply": true, - "moduleResolution": "node", - "resolveJsonModule": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true + "target": "ES2022", + "module": "commonjs", + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "outDir": "dist/", + "strict": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "strictBindCallApply": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true }, "include": [ - "src" + "src" ], "exclude": [ - "node_modules", - "test", - "tsdoc.config.js" + "node_modules", + "test", + "tsdoc.config.js" + ], + "files": [ + "src/index.ts" ] - } - \ No newline at end of file +} \ No newline at end of file