Skip to content

Commit 50a2931

Browse files
committed
fix: use HTTPS url instead of SSH in git clone,
1 parent 6634338 commit 50a2931

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bin/create.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ async function main() {
88
// can be shell command or callback function
99

1010
const commands = [
11-
`git clone git@github.com:j7-dev/wp-react-plugin.git ${projectName}`,
11+
`git clone https://github.com/j7-dev/wp-react-plugin.git ${projectName}`,
1212
`cd ${projectName}`,
1313
'yarn',
1414
`node ./replace-string.cjs ${projectName}`,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-wp-react-plugin",
3-
"version": "3.0.19",
3+
"version": "3.0.20",
44
"type": "module",
55
"scripts": {
66
"bootstrap": "yarn install && composer install --no-interaction && node ./replace-string.cjs",

plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WP React Plugin (DEV)
44
* Plugin URI: https://github.com/j7-dev/wp-react-plugin
55
* Description: WP React Plugin is a boilerplate for creating a WordPress plugin with React, Tailwind, TypeScript, React Query v4, SCSS and Vite.
6-
* Version: 3.0.19
6+
* Version: 3.0.20
77
* Requires at least: 5.7
88
* Requires PHP: 8.0
99
* Author: J7

0 commit comments

Comments
 (0)