Skip to content

Commit 8ba82d8

Browse files
Update CHANGELOG and CONTRIBUTING
1 parent e1b0160 commit 8ba82d8

File tree

2 files changed

+26
-5
lines changed

2 files changed

+26
-5
lines changed

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## [2.2.0] - 2018-12-20
2+
3+
### New
4+
5+
- Accessibility improvements:
6+
- Better tabbing order for shop filters and results.
7+
- "Skip to content" and "Skip to result" skip links.
8+
- Ensure all focus outlines are visible.
9+
- Upgrade developer experience:
10+
- Use more `@wordpress` `npm` packages (`eslint`, `browserslist`)
11+
- Update JS coding standards.
12+
- Update PHP coding standards.
13+
- Update CSS coding standards.
14+
- Request a Google Fonts API key when generating font list.
15+
- Allow integrations to define helper files to be autoloaded.
16+
17+
### Fix
18+
19+
- Avoid error if offcanvas drawer source or target does not exist.
20+
121
## [2.1.0] - 2018-12-18
222

323
### New
@@ -9,7 +29,7 @@
929
### Fix
1030

1131
- Ensure button color is accurately reflected.
12-
- Coding standad updates.
32+
- Coding standard updates.
1333

1434
## [2.0.0] - 2018-11-06
1535

CONTRIBUTING.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
## Getting Started
44

5-
If you prefer to set things up manually, be sure to have <a href="https://nodejs.org/en/">Node.js installed first</a>. You should be running a Node version matching the [current active LTS release](https://github.com/nodejs/Release#release-schedule) or newer for this plugin to work correctly. You can check your Node.js version by typing `node -v` in the Terminal prompt.
5+
Be sure to have <a href="https://nodejs.org/en/">Node.js installed first</a>. You should be running a Node version matching the [current active LTS release](https://github.com/nodejs/Release#release-schedule) or newer for this plugin to work correctly. You can check your Node.js version by typing `node -v` in the Terminal prompt.
66

77
You should also have the latest release of <a href="https://npmjs.org">npm installed</a>, npm is a separate project from Node.js and is updated frequently. If you've just installed Node.js which includes a version of npm within the installation you most likely will need to also update your npm install. To update npm, type this into your terminal: `npm install npm@latest -g`
88

99
To test the plugin, or to contribute to it, you can clone this repository and build the plugin files using Node. How you do that depends on whether you're developing locally or uploading the plugin to a remote host.
1010

1111
### Local Environment
1212

13-
Next, open a terminal (or if on Windows, a command prompt) and navigate to the repository you cloned. Now type `npm run setup-theme` to get the dependencies all set up. Then you can type `npm run dev` in your terminal or command prompt to keep the theme building in the background as you work on it.
13+
Next, open a terminal (or if on Windows, a command prompt) and navigate to the repository you cloned. Now type `npm run setup-theme-dev` to get the dependencies all set up. Then you can type `npm run dev` in your terminal or command prompt to keep the theme building in the background as you work on it.
1414

1515
## Workflow
1616

@@ -21,10 +21,11 @@ A good workflow for new contributors to follow is listed below:
2121
- Make code changes
2222
- Commit code changes within newly created branch
2323
- Push branch to forked repository
24-
- Submit Pull Request to `bigbox-theme` repository
24+
- Submit Pull Request to `bigbox` repository
2525

2626
Ideally name your branches with prefixes and descriptions, like this: `[type]/[change]`. A good prefix would be:
2727

2828
- `add/` = add a new feature
2929
- `try/` = experimental feature, "tentatively add"
30-
- `update/` = update an existing feature
30+
- `update/` = update an existing feature
31+
- `issue/` = solve an open issue

0 commit comments

Comments
 (0)