@wordpress/shortcode 3.2.0 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,7 +10,7 @@ Install the module
10
10
  npm install @wordpress/shortcode --save
11
11
  ```
12
12
 
13
- _This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for ES2015+ such as IE browsers then using [core-js](https://github.com/zloirock/core-js) will add polyfills for these methods._
13
+ _This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for such language features and APIs, you should include [the polyfill shipped in `@wordpress/babel-preset-default`](https://github.com/WordPress/gutenberg/tree/HEAD/packages/babel-preset-default#polyfill) in your code._
14
14
 
15
15
  ## API
16
16
 
@@ -136,13 +136,12 @@ format the shortcode using a `single` tag, and a `content` string.
136
136
 
137
137
  _Parameters_
138
138
 
139
- - _options_ `Object`:
139
+ - _options_ `Object`:
140
140
 
141
141
  _Returns_
142
142
 
143
143
  - `string`: String representation of the shortcode.
144
144
 
145
-
146
145
  <!-- END TOKEN(Autogenerated API docs) -->
147
146
 
148
147
  <br/><br/><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/shortcode",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "description": "Shortcode module for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -32,5 +32,5 @@
32
32
  "publishConfig": {
33
33
  "access": "public"
34
34
  },
35
- "gitHead": "743b70f86f1e75fd66a583bf659f2b2fe5daf1cc"
35
+ "gitHead": "8f7f052bc04e3f4eb50f479ced14be1489b9fa79"
36
36
  }