From 839d2843d7370eaebf5932f8e7f0b19a93c61fcc Mon Sep 17 00:00:00 2001 From: Maedah Batool Date: Sat, 20 Jan 2018 11:57:08 +0500 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=91=8C=20IMPROVE:=20Description.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correct an extra space in the `description`. --- packages/create-guten-block/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/create-guten-block/package.json b/packages/create-guten-block/package.json index 0bb16451..fbeca829 100644 --- a/packages/create-guten-block/package.json +++ b/packages/create-guten-block/package.json @@ -1,7 +1,7 @@ { "name": "create-guten-block", "version": "1.9.1", - "description": "Create a WordPress Gutenberg Block plugin with Zero-Config #OCJS, Webpack, React, ES6/7/8/Next, ESLint, Babel, etc.", + "description": "Create a WordPress Gutenberg Block plugin with Zero-Config #OCJS, Webpack, React, ES6/7/8/Next, ESLint, Babel, etc.", "main": "index.js", "keywords": [ "gutenberg", From bb98461de99d160bc6aaf6ba39abd63c82118be4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmad=20Awais=20=E2=9A=A1=EF=B8=8F?= Date: Sat, 20 Jan 2018 21:35:57 +0500 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=91=8C=20IMPROVE:=20Attribution?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add [Christopher Chedeau](https://twitter.com/vjeux) to the list. 💯 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea87edb4..bb2524c5 100644 --- a/README.md +++ b/README.md @@ -335,4 +335,4 @@ This FOSS (free and open source software) project is updated and maintained with MIT © [Ahmad Awais](https://AhmadAwais.com/). -This project is inspired by the work of more people than I could mention here. But thank you, [Dan Abramov](https://twitter.com/dan_abramov) for Create React App, [Andrew Clark](https://twitter.com/acdlite), [Sophie Alpert](https://twitter.com/sophiebits) from React.js team, [Wes Bos](https://twitter.com/wesbos) for awesome courses for [React](https://ReactForBeginners.com/friend/AHMADAWAIS), [ES6](https://ES6.io/friend/AHMADAWAIS), and [Node](https://LearnNode.com/friend/AHMADAWAIS) beginners. [Kent C. Dodds](https://twitter.com/kentcdodds) for his open source evangelism, WordPress Core Contributors, [Gary](https://twitter.com/GaryPendergast) for keeping everyone sane, [Gutenberg](http://github.com/wordpress/gutenberg) developers [Matias](https://twitter.com/matias_ventura), [Riad](https://github.com/youknowriad), [Andrew](https://github.com/aduth), [Joen](https://github.com/jasmussen), [Greg](https://twitter.com/gziolo) and contributors, and other WordPress community members like [Zac](https://twitter.com/zgordon) for his [course on Gutenberg](https://ahmda.ws/ZacGutenbergCourse), and also my friend [Morten](https://twitter.com/mor10) for all the #Guten-motivation, [Icons8](https://icons8.com/) for the awesome icons, [Maedah](https://twitter.com/MaedahBatool/) for managing this project, and to everyone I forgot. +This project is inspired by the work of more people than I could mention here. But thank you, [Dan Abramov](https://twitter.com/dan_abramov) for Create React App, [Andrew Clark](https://twitter.com/acdlite), [Christopher Chedeau](https://twitter.com/vjeux), [Sophie Alpert](https://twitter.com/sophiebits) from React.js team, [Wes Bos](https://twitter.com/wesbos) for awesome courses for [React](https://ReactForBeginners.com/friend/AHMADAWAIS), [ES6](https://ES6.io/friend/AHMADAWAIS), and [Node](https://LearnNode.com/friend/AHMADAWAIS) beginners. [Kent C. Dodds](https://twitter.com/kentcdodds) for his open source evangelism, WordPress Core Contributors, [Gary](https://twitter.com/GaryPendergast) for keeping everyone sane, [Gutenberg](http://github.com/wordpress/gutenberg) developers [Matias](https://twitter.com/matias_ventura), [Riad](https://github.com/youknowriad), [Andrew](https://github.com/aduth), [Joen](https://github.com/jasmussen), [Greg](https://twitter.com/gziolo) and contributors, and other WordPress community members like [Zac](https://twitter.com/zgordon) for his [course on Gutenberg](https://ahmda.ws/ZacGutenbergCourse), and also my friend [Morten](https://twitter.com/mor10) for all the #Guten-motivation, [Icons8](https://icons8.com/) for the awesome icons, [Maedah](https://twitter.com/MaedahBatool/) for managing this project, and to everyone I forgot. From 1871f45e18c3548702e8e26dec8e160a86dd90d3 Mon Sep 17 00:00:00 2001 From: tfrommen Date: Sat, 20 Jan 2018 21:33:07 +0100 Subject: [PATCH 3/3] Remove unnecessary parentheses. --- packages/cgb-scripts/template/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cgb-scripts/template/plugin.php b/packages/cgb-scripts/template/plugin.php index c082551d..082e032b 100644 --- a/packages/cgb-scripts/template/plugin.php +++ b/packages/cgb-scripts/template/plugin.php @@ -20,4 +20,4 @@ /** * Block Initializer. */ -require_once( plugin_dir_path( __FILE__ ) . 'src/init.php' ); +require_once plugin_dir_path( __FILE__ ) . 'src/init.php';