create-directus-docker 1.0.8 → 1.0.9

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.
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.0.8",
4
+ "version": "1.0.9",
5
5
  "author": {
6
6
  "name": "Dave Kobrenski",
7
7
  "email": "dave@rlmg.com"
@@ -13,6 +13,11 @@
13
13
  "mysql",
14
14
  "installer"
15
15
  ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/rollmug/directus-mysql-template"
19
+ },
20
+ "homepage": "https://github.com/rollmug/directus-mysql-template#readme",
16
21
  "scripts": {
17
22
  "init": "npm-run-all -p copy:*",
18
23
  "copy:package": "copy-file ../directus-mysql-template/package.json ./templates/default/package.json",
package/src/cli.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const chalk = require('chalk');
3
+ import chalk from 'chalk';
4
4
  const { resolve } = require('path');
5
5
  const { create } = require('create-create-app');
6
6
 
@@ -12,7 +12,7 @@ This package contains everything you need to get up and running with Directus CM
12
12
  **The easiest way to get up and running is to open a terminal session and run:**
13
13
 
14
14
  ```bash
15
- npx create-directus-docker <my-project>
15
+ npx create-directus-docker@latest <my-project>
16
16
  ```
17
17
 
18
18
  Then, just follow the on-screen prompts.