create-wirejs-deploy-amplify-basic 1.0.8 → 1.0.10

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/bin.js +2 -1
  2. package/package.json +2 -2
package/bin.js CHANGED
@@ -5,11 +5,12 @@ const copy = require('recursive-copy');
5
5
  (async () => {
6
6
  console.log("Writing Amplify configuration.");
7
7
  await copy(`${__dirname}/assets/amplify.yml`, `./amplify.yml`);
8
+ await copy(`${__dirname}/assets/customHttp.yml`, `./customHttp.yml`);
8
9
 
9
10
  console.log(`
10
11
  Amplify configuration written. Your next steps:
11
12
 
12
- 1. Commit the new configuration file:
13
+ 1. Commit the new configuration files:
13
14
 
14
15
  git add .
15
16
  git commit -m "added amplify deployment config"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-wirejs-deploy-amplify-basic",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "Initializes very basic Amplify deployment configuration.",
5
5
  "author": "Jon Wire",
6
6
  "license": "MIT",
@@ -20,4 +20,4 @@
20
20
  "assets/*",
21
21
  "README.md"
22
22
  ]
23
- }
23
+ }