diff --git a/.gitignore b/.gitignore index 8d8eded..3b01d0d 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,5 @@ dev/ build/ deno/ __tests__ -jest.config.js \ No newline at end of file +jest.config.js +.vscode/ \ No newline at end of file diff --git a/README.md b/README.md index 8243dbe..352b52a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ Simple package to search videos or channels on YouTube. # Installation ## Node -> Minimum node version required to run this library is v14.x ```sh $ npm i youtube-sr diff --git a/package.json b/package.json index d9a49da..bc04247 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "youtube-sr", - "version": "4.0.3", + "version": "4.0.4", "description": "Simple package to search videos or channels on YouTube.", "main": "build/main.js", "types": "build/main.d.ts", "scripts": { "build": "rd /s /q build && tsc", - "dev": "cd demo && node index.js", + "dev": "cd dev && node index.js", "test": "jest" }, "repository": { diff --git a/tsconfig.json b/tsconfig.json index 22ff8c8..8e03285 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "commonjs", - "target": "ES2020", + "target": "ES6", "declaration": true, "strict": true, "strictNullChecks": false,