create-directus-docker 1.2.4 → 1.2.6

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/package.json +1 -1
  2. package/src/cli.js +4 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-directus-docker",
3
3
  "description": "An installer for Dockerized Directus + MySQL + Adminer + GraphiQL with a helper Node app",
4
- "version": "1.2.4",
4
+ "version": "1.2.6",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "Dave Kobrenski",
package/src/cli.js CHANGED
@@ -11,13 +11,14 @@ const __dirname = path.dirname(__filename);
11
11
 
12
12
  create('create-directus-docker', {
13
13
  templateRoot: upath.resolve(__dirname, '../templates'),
14
- caveat: ({ answers }) => {
14
+ caveat: ({ packageDir }) => {
15
15
  return `
16
- {chalk.yellow("Directus with MySQL, Adminer, and GraphiQL:")}
16
+ ${chalk.bold.yellowBright("Directus with MySQL, Adminer, and GraphiQL:")}
17
17
 
18
18
  To configure and run your Directus services, run:
19
19
 
20
- cd ${chalk.bold.green(answers.name)} && npm start
20
+ ${chalk.gray('1.')} npm install
21
+ ${chalk.gray('2.')} cd ${chalk.bold.green(packageDir)} && npm start
21
22
 
22
23
  For more information, see:
23
24
  https://github.com/davekobrenski/create-directus-docker