Skip to content

Commit dd18164

Browse files
Merge branch 'release/1.2.1'
2 parents 03044af + 4fb132d commit dd18164

File tree

6 files changed

+1308
-4200
lines changed

6 files changed

+1308
-4200
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,7 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v2
29-
- name: Parse changelog
30-
run: |
31-
START="## ${{ GITHUB_REF#refs/tags/ }}"
32-
END="##"
33-
grep -oPz "(?s)${START}.*?\n\K.*?(?=${END})" CHANGELOG.md > changelog.txt
34-
truncate -s-2 changelog.txt
3529
- name: Release
3630
uses: softprops/action-gh-release@v1
37-
with:
38-
body_path: changelog.txt
3931
env:
4032
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## 1.2.1
5+
6+
* [Added] Missing babel options
7+
* [Added] Webpack resolver for ESlint
8+
* [Changed] Alphabetical order turned on in stylelint
9+
* [Changed] Updated NPM dependencies
10+
411
## 1.2.0
512

613
* [Added] node-sass-glob-importer

eslint-config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ module.exports = {
22
extends: ['plugin:@wordpress/eslint-plugin/recommended'],
33
parserOptions: {
44
requireConfigFile: false,
5+
babelOptions: {
6+
presets: ['@wordpress/babel-preset-default'],
7+
},
58
},
69
rules: {
710
'prettier/prettier': [
@@ -20,4 +23,7 @@ module.exports = {
2023
},
2124
],
2225
},
26+
settings: {
27+
'import/resolver': ['webpack', 'node'],
28+
},
2329
};

0 commit comments

Comments
 (0)