@fishawack/lab-env 4.1.1 → 4.2.1
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 +6 -0
- package/commands/create/services/aws/index.js +1 -1
- package/globals.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 4.2.1 (2022-10-21)
|
|
4
|
+
* [Bug] `fw new` should pass through docker running check
|
|
5
|
+
|
|
6
|
+
### 4.2.0 (2022-09-23)
|
|
7
|
+
* [Feature] Added newly setup AWS accounts to the client prompts on `fw provision`
|
|
8
|
+
|
|
3
9
|
### 4.1.1 (2022-09-22)
|
|
4
10
|
* [Bug] Use $* instead of $@ to expand as a single argument to stop -d being parsed by lab-env itself during zip/unzip calls
|
|
5
11
|
|
|
@@ -6,7 +6,7 @@ module.exports.iam = require("./iam.js");
|
|
|
6
6
|
|
|
7
7
|
module.exports.slug = (repo, client, branch) => s3Safe(`${branch}-${repo}-${client}`);
|
|
8
8
|
|
|
9
|
-
module.exports.clients = ['fishawack', 'abbvie', 'sanofigenzyme', 'gsk', 'janssen', 'astrazeneca', 'ptc', 'jazz', 'pfizer', 'heron', 'novartis', 'training', 'merck', 'acadia', 'travere', 'roche', 'utc', 'bayer', 'alcon'];
|
|
9
|
+
module.exports.clients = ['fishawack', 'abbvie', 'sanofigenzyme', 'gsk', 'janssen', 'astrazeneca', 'ptc', 'jazz', 'pfizer', 'heron', 'novartis', 'training', 'merck', 'acadia', 'travere', 'roche', 'utc', 'bayer', 'alcon', 'uhc'];
|
|
10
10
|
|
|
11
11
|
module.exports.static = async (name, account, tags = [], credentials = []) => {
|
|
12
12
|
let s3 = await module.exports.s3.createS3Bucket(name, account, tags);
|
package/globals.js
CHANGED
|
@@ -126,7 +126,7 @@ try{
|
|
|
126
126
|
} catch(e){}
|
|
127
127
|
|
|
128
128
|
// Always allow diagnose, diag, version, help and origin through
|
|
129
|
-
if(args[0] !== 'diag' && args[0] !== 'diagnose' && args[0] !== 'origin' && args[0] !== '--version' && args[0] !== '--help'){
|
|
129
|
+
if(args[0] !== 'diag' && args[0] !== 'diagnose' && args[0] !== 'origin' && args[0] !== '--version' && args[0] !== '--help' && args[0] !== 'new'){
|
|
130
130
|
// Stop here if diagnosis either unset or outdated
|
|
131
131
|
if(!config.diagnosis || semver.diff(config.diagnosis, diagnosis) === 'major'){
|
|
132
132
|
console.log(`${utilities.colorize(`@fishawack/lab-env`, 'title')} diagnosis is ${utilities.colorize(`outdated`, 'error')}.\n\nRun ${utilities.colorize(`fw diagnose`, 'success')} to reconfigure.`);
|