@fishawack/lab-env 3.1.0 → 3.2.0
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 3.2.0 (2022-09-12)
|
|
4
|
+
* [Feature] Added newly setup AWS accounts to the client prompts on `fw provision`
|
|
5
|
+
* [Change] Clients now listed in alphabetical order
|
|
6
|
+
* [Change] Clients list no longer loops
|
|
7
|
+
|
|
3
8
|
### 3.1.0 (2022-09-08)
|
|
4
9
|
* [Feature] exec command now has the -g flag to prepend the full grunt path
|
|
5
10
|
* [Feature] Diagnosis now has a version number that will prompt for re-run when needed
|
|
@@ -37,14 +37,15 @@ module.exports = [
|
|
|
37
37
|
name: 'stack',
|
|
38
38
|
message: 'What type of project are you deploying?',
|
|
39
39
|
choices: ['static'],
|
|
40
|
-
default:
|
|
40
|
+
default: 0
|
|
41
41
|
},
|
|
42
42
|
{
|
|
43
43
|
type: 'list',
|
|
44
44
|
name: 'client',
|
|
45
45
|
message: 'Which AWS account should this be deployed too?',
|
|
46
|
-
choices: aws.clients,
|
|
47
|
-
default:
|
|
46
|
+
choices: aws.clients.sort(),
|
|
47
|
+
default: 0,
|
|
48
|
+
loop: false
|
|
48
49
|
},
|
|
49
50
|
{
|
|
50
51
|
type: 'confirm',
|
|
@@ -4,7 +4,7 @@ module.exports.iam = require("./iam.js");
|
|
|
4
4
|
|
|
5
5
|
module.exports.slug = (repo, client, branch) => `fw-auto-${client}-${repo}-${branch}`;
|
|
6
6
|
|
|
7
|
-
module.exports.clients = ['fishawack', 'abbvie', 'sanofigenzyme', 'gsk', 'janssen', 'astrazeneca', 'ptc', 'jazz', 'pfizer', 'heron', 'novartis', 'training'];
|
|
7
|
+
module.exports.clients = ['fishawack', 'abbvie', 'sanofigenzyme', 'gsk', 'janssen', 'astrazeneca', 'ptc', 'jazz', 'pfizer', 'heron', 'novartis', 'training', 'merck', 'acadia', 'travere'];
|
|
8
8
|
|
|
9
9
|
module.exports.static = async (name, account, tags = [], credentials = []) => {
|
|
10
10
|
let s3 = await module.exports.s3.createS3Bucket(name, account, tags);
|