@mimik/local 5.2.0 → 5.2.2

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/common.js CHANGED
@@ -124,7 +124,7 @@ const DEFAULT_KINESISLOG = {
124
124
  };
125
125
  const DEFAULT_KEY = {
126
126
  username: DEFAULT_BITBUCKET_USERNAME,
127
- password: DEFAULT_BITBUCKET_USERNAME,
127
+ password: DEFAULT_BITBUCKET_PASSWORD,
128
128
  };
129
129
  const DEFAULT_LOCATION = {
130
130
  url: null,
package/lib/tasks.js CHANGED
@@ -188,6 +188,9 @@ const startSetup = (config, origStart) => {
188
188
  // server basics
189
189
  start.SERVER_TYPE = type;
190
190
  start.SERVER_ID = start.SERVER_ID || uuid.v4();
191
+ // api access
192
+ start.BITBUCKET_USERNAME = config.key.username;
193
+ start.BITBUCKET_PASSWORD = config.key.password;
191
194
  // passphrase to be shared to all the servers
192
195
  if (config.mST.passphrase) start.PASSPHRASE = config.mST.passphrase;
193
196
  // oauth issuer full address
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mimik/local",
3
- "version": "5.2.0",
3
+ "version": "5.2.2",
4
4
  "description": "Local setup configuration for normal and test opreration",
5
5
  "main": "index.js",
6
6
  "scripts": {