From e1ff168aa047f4b501f406204bed5628019b5fe2 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 14 Jul 2023 13:31:31 +0300 Subject: [PATCH] chore: package: v2.71.0 --- .github/workflows/nodejs.yml | 2 ++ ChangeLog | 5 +++++ lib/tokenize/expressions/functions/params.js | 1 + lib/tokenize/typescript/index.js | 1 - package.json | 2 +- 5 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index e3b6b229..5c282bcf 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -43,11 +43,13 @@ jobs: run: typos --write-changes - name: Commit fixes uses: EndBug/add-and-commit@v9 + continue-on-error: true with: message: "chore: ${{ env.NAME }}: actions: lint ☘️" - name: Coverage run: redrun coverage report - name: Coveralls uses: coverallsapp/github-action@v2 + continue-on-error: true with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/ChangeLog b/ChangeLog index 14ff75c5..a65d9897 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2023.07.14, v2.71.0 + +feature: +- 71bf28d @putout/printer: TSTypeParameterInstantiation: couple params (coderaiser/putout#147) + 2023.07.12, v2.70.0 feature: diff --git a/lib/tokenize/expressions/functions/params.js b/lib/tokenize/expressions/functions/params.js index ae992acb..8a3a8ab0 100644 --- a/lib/tokenize/expressions/functions/params.js +++ b/lib/tokenize/expressions/functions/params.js @@ -8,6 +8,7 @@ module.exports.printParams = (path, printer, semantics, customization = {}) => { braceOpen = '(', braceClose = ')', } = customization; + const {print, traverse} = printer; printBraceOpen(path, { diff --git a/lib/tokenize/typescript/index.js b/lib/tokenize/typescript/index.js index a650c70b..126a663b 100644 --- a/lib/tokenize/typescript/index.js +++ b/lib/tokenize/typescript/index.js @@ -244,4 +244,3 @@ module.exports = { TSPropertySignature, TSFunctionType, }; - diff --git a/package.json b/package.json index 70ffc5b4..7397356c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@putout/printer", - "version": "2.70.0", + "version": "2.71.0", "type": "commonjs", "author": "coderaiser (https://github.com/coderaiser)", "description": "Simplest possible opinionated Babel AST printer for 🐊Putout",