Skip to content

Commit 395d47b

Browse files
authored
Merge pull request #61 from darkriszty/feature/alignment-marker-whitespaces
Feature/alignment marker whitespaces
2 parents 6590028 + 3953827 commit 395d47b

7 files changed

Lines changed: 308 additions & 253 deletions

File tree

.github/workflows/test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,20 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
os: [ macos-latest, windows-latest ]
16-
node-version: [ '12.x', '14.x', '15.x' ]
15+
os: [ ubuntu-latest, macos-latest, windows-latest ]
16+
node-version: [ '14.x', '16.x' ]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- name: Checkout
20+
uses: actions/checkout@v2
2021
- name: Use Node.js ${{ matrix.node-version }}
2122
uses: actions/setup-node@v1
2223
with:
2324
node-version: ${{ matrix.node-version }}
2425

2526
- run: npm ci
27+
28+
- run: xvfb-run -a npm test
29+
if: runner.os == 'Linux'
2630
- run: npm test
31+
if: runner.os != 'Linux'

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
66

77
## [Unreleased]
88

9-
## 3.4.0 - 2020-04-04
9+
## 3.5.0 - 2021-08-20
10+
### Added
11+
- Issue #60: Ignore whitespaces around alignment markers.
12+
13+
## 3.4.0 - 2021-04-04
1014
### Added
1115
- Issue #56: Support ignoring parts of documents with an ignore directive.
1216

13-
## 3.3.0 - 2020-03-25
17+
## 3.3.0 - 2021-03-25
1418
### Added
1519
- Issue #54: Config to support more languages in VSCode formatting.
1620

17-
## 3.2.2 - 2020-01-11
21+
## 3.2.2 - 2021-01-11
1822
### Added
1923
- Issue #49: NPM package support.
2024

21-
## 3.2.1 - 2020-01-01
25+
## 3.2.1 - 2021-01-01
2226
### Fixed
2327
- Issue #50: Dockerfile improvements.
2428

0 commit comments

Comments
 (0)