create-directus-docker 1.0.6 → 1.0.7
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/lib/index.js +1 -1
- package/package.json +7 -1
package/lib/index.js
CHANGED
|
@@ -128,7 +128,7 @@ try {
|
|
|
128
128
|
|
|
129
129
|
console.log(chalk.greenBright("\nAll set!"));
|
|
130
130
|
console.log("You can always edit the variables that we've just set in the .env file manually.\n");
|
|
131
|
-
console.log(`${chalk.greenBright("To launch all services, just run 'npm start'
|
|
131
|
+
console.log(`${chalk.greenBright("To launch all services, just run 'npm start'.")}\n`);
|
|
132
132
|
})
|
|
133
133
|
}
|
|
134
134
|
} catch (err) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-directus-docker",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "A helper app to configure Directus on Docker with MySQL, Adminer, and GraphQL",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -13,6 +13,12 @@
|
|
|
13
13
|
"create-directus-docker": "./lib/index.js",
|
|
14
14
|
"cdd": "./lib/index.js"
|
|
15
15
|
},
|
|
16
|
+
"files": [
|
|
17
|
+
"docker-compose.yml",
|
|
18
|
+
"./lib/index.js",
|
|
19
|
+
"./lib/check-requirements.js",
|
|
20
|
+
"./lib/launch-services.js"
|
|
21
|
+
],
|
|
16
22
|
"keywords": [
|
|
17
23
|
"directus",
|
|
18
24
|
"docker",
|