Skip to content

Commit 14d4463

Browse files
Merge branch 'master' into develop
2 parents ee7290e + d0cd210 commit 14d4463

File tree

6 files changed

+67
-52
lines changed

6 files changed

+67
-52
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,6 @@ jspm_packages
4242

4343
# Lib
4444
lib
45+
46+
# Others
47+
.DS_Store

CHANGELOGS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
create-wp-site Changelogs
2+
==============
3+
4+
## v0.1.x
5+
6+
* Release minimal version

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ create-wp-site
33

44
[![npm version](https://img.shields.io/npm/v/create-wp-site.svg?style=flat)](https://www.npmjs.com/package/create-wp-site)
55

6-
`create-wp-site` is a is a site creation wizard for your local WordPress development
7-
using [10up/wp-local-docker](https://github.com/10up/wp-local-docker).
6+
`create-wp-site` is a command line tool to create your local WordPress development
7+
with [10up/wp-local-docker](https://github.com/10up/wp-local-docker).
88
This tools is inspired by site creation wizard for [VVV](https://github.com/Varying-Vagrant-Vagrants/VVV) by [brad/vv](https://github.com/bradp/vv).
99

1010
## Requirements

package.json

Lines changed: 55 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,68 @@
11
{
22
"name": "create-wp-site",
3-
"version": "0.1.1",
4-
"description": "Create WordPress site with 10up/wp-local-docker",
3+
"version": "0.1.4",
4+
"description": "Create local WordPress development with 10up/wp-local-docker",
55
"bin": {
6-
"create-wp-site": "bin/create-wp-site"
6+
"create-wp-site": "bin/create-wp-site"
77
},
88
"main": "lib/cli.js",
99
"scripts": {
10-
"clean": "rimraf lib",
11-
"build": "npm run clean && cross-env BABEL_ENV=commonjs babel src --out-dir lib",
12-
"pre-publish": "npm run clean && npm run build",
13-
"version": "npm run build && git add -A .",
14-
"watch": "npm run clean && nodemon --watch src --exec \"npm run build\"",
15-
"format": "prettier --trailing-comma es5 --single-quote --write 'src/*/*.js' 'src/*/!(node_modules)/**/*.js'",
16-
"lint": "npm run format && eslint --fix --config .eslintrc src"
10+
"clean": "rimraf lib",
11+
"build": "npm run clean && cross-env BABEL_ENV=commonjs babel src --out-dir lib",
12+
"pre-publish": "npm run clean && npm run build",
13+
"version": "npm run build && git add -A .",
14+
"watch": "npm run clean && nodemon --watch src --exec \"npm run build\"",
15+
"format": "prettier --trailing-comma es5 --single-quote --write 'src/*/*.js' 'src/*/!(node_modules)/**/*.js'",
16+
"lint": "npm run format && eslint --fix --config .eslintrc src"
1717
},
18-
"author": "Ivan Kristianto",
18+
"repository": "ivankristianto/create-wp-site",
19+
"keywords": [
20+
"wordpress",
21+
"docker",
22+
"cli"
23+
],
24+
"author": "Ivan Kristianto <ivan@ivankristianto.com>",
1925
"license": "MIT",
2026
"dependencies": {
21-
"archiver": "^1.3.0",
22-
"chalk": "^1.1.3",
23-
"cheerio": "^0.22.0",
24-
"commander": "2.9.0",
25-
"cross-spawn": "^5.0.1",
26-
"fs-extra": "3.0.1",
27-
"glob-all": "^3.1.0",
28-
"hostile": "^1.3.0",
29-
"inquirer": "^3.0.6",
30-
"js-yaml": "^3.8.4",
31-
"mkdirp": "^0.5.1",
32-
"open": "0.0.5",
33-
"parse-github-repo-url": "^1.3.0",
34-
"promzard": "^0.3.0",
35-
"read": "^1.0.7",
36-
"read-chunk": "^2.0.0",
37-
"request": "^2.79.0",
38-
"rimraf": "^2.5.4",
39-
"semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz",
40-
"shelljs": "^0.7.6",
41-
"string-template": "^1.0.0",
42-
"temp": "^0.8.3",
43-
"yamljs": "^0.2.10"
27+
"archiver": "^1.3.0",
28+
"chalk": "^1.1.3",
29+
"cheerio": "^0.22.0",
30+
"commander": "2.9.0",
31+
"cross-spawn": "^5.0.1",
32+
"fs-extra": "3.0.1",
33+
"glob-all": "^3.1.0",
34+
"hostile": "^1.3.0",
35+
"inquirer": "^3.0.6",
36+
"js-yaml": "^3.8.4",
37+
"mkdirp": "^0.5.1",
38+
"open": "0.0.5",
39+
"parse-github-repo-url": "^1.3.0",
40+
"promzard": "^0.3.0",
41+
"read": "^1.0.7",
42+
"read-chunk": "^2.0.0",
43+
"request": "^2.79.0",
44+
"rimraf": "^2.5.4",
45+
"semver": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz",
46+
"shelljs": "^0.7.6",
47+
"string-template": "^1.0.0",
48+
"temp": "^0.8.3",
49+
"yamljs": "^0.2.10"
4450
},
4551
"devDependencies": {
46-
"babel": "^6.5.2",
47-
"babel-cli": "^6.14.0",
48-
"babel-eslint": "^7.0.0",
49-
"babel-plugin-add-module-exports": "^0.2.1",
50-
"babel-preset-es2015": "^6.14.0",
51-
"babel-preset-stage-2": "^6.13.0",
52-
"babel-register": "^6.22.0",
53-
"chai": "^3.5.0",
54-
"cross-env": "^3.0.0",
55-
"eslint": "^3.11.1",
56-
"istanbul": "^1.0.0-alpha",
57-
"mocha": "^3.2.0",
58-
"nodemon": "^1.11.0",
59-
"prettier": "^1.3.1",
60-
"sinon": "^1.17.7"
52+
"babel": "^6.5.2",
53+
"babel-cli": "^6.14.0",
54+
"babel-eslint": "^7.0.0",
55+
"babel-plugin-add-module-exports": "^0.2.1",
56+
"babel-preset-es2015": "^6.14.0",
57+
"babel-preset-stage-2": "^6.13.0",
58+
"babel-register": "^6.22.0",
59+
"chai": "^3.5.0",
60+
"cross-env": "^3.0.0",
61+
"eslint": "^3.11.1",
62+
"istanbul": "^1.0.0-alpha",
63+
"mocha": "^3.2.0",
64+
"nodemon": "^1.11.0",
65+
"prettier": "^1.3.1",
66+
"sinon": "^1.17.7"
6167
}
6268
}

src/commands/info.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import cli from 'commander';
33

44
export default () => {
55
log.info( '=== Create WP Site v' + cli.version() + ' ===' );
6-
log.info( 'Create WP Site is a site creation wizard for WordPress using 10up/wp-local-docker' );
6+
log.info( 'Create local WordPress development with 10up/wp-local-docker' );
77
log.info( 'Run create-wp-site --help for more info' );
88
};

0 commit comments

Comments
 (0)