@mimik/local 5.0.7 → 5.1.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/README.md +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
- package/scripts.json +3 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
Set of function for local deployment.
|
|
5
5
|
|
|
6
6
|
The following files are expected to exist:
|
|
7
|
-
In the directory above the server root directory: `mSTConfig.json`, `mIDConfig.json`, `mITConfig.json`,`sumoLog.json`, `kinesisLog.json`,
|
|
7
|
+
In the directory above the server root directory: `mSTConfig.json`, `mIDConfig.json`, `mITConfig.json`,`sumoLog.json`, `kinesisLog.json`, `s3Log.json`, `customerConfig.json`, 'key.json`, `locationConfig.json` are being set. If they don't exist at the launch of the script, default will be setup.
|
|
8
8
|
- for `mSTConfig.json`:
|
|
9
9
|
``` javascript
|
|
10
10
|
{
|
package/index.js
CHANGED
|
@@ -56,7 +56,7 @@ const INSTALL = 'install';
|
|
|
56
56
|
* @description Set of function for local deployment.
|
|
57
57
|
*
|
|
58
58
|
* The following files are expected to exist:
|
|
59
|
-
* In the directory above the server root directory: `mSTConfig.json`, `mIDConfig.json`, `mITConfig.json`,`sumoLog.json`, `kinesisLog.json`,
|
|
59
|
+
* In the directory above the server root directory: `mSTConfig.json`, `mIDConfig.json`, `mITConfig.json`,`sumoLog.json`, `kinesisLog.json`, `s3Log.json`, `customerConfig.json`, 'key.json`, `locationConfig.json` are being set. If they don't exist at the launch of the script, default will be setup.
|
|
60
60
|
* - for `mSTConfig.json`:
|
|
61
61
|
* ``` javascript
|
|
62
62
|
* {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mimik/local",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Local setup configuration for normal and test opreration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"url": "https://bitbucket.org/mimiktech/local"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@mimik/git-hooks": "1.5.
|
|
32
|
+
"@mimik/git-hooks": "^1.5.5",
|
|
33
33
|
"axios": "0.27.2",
|
|
34
34
|
"bluebird": "3.7.2",
|
|
35
35
|
"colors": "1.4.0",
|
package/scripts.json
CHANGED
|
@@ -8,11 +8,10 @@
|
|
|
8
8
|
"prestart": "node ./local/setup.js",
|
|
9
9
|
"start": "sh server-start.sh",
|
|
10
10
|
"pre-push": "npm run docs && npm run lint && npm run test",
|
|
11
|
-
"pre-push-install": "npx husky
|
|
11
|
+
"pre-push-install": "npx husky set .husky/pre-push 'npm run pre-push'",
|
|
12
12
|
"pre-commit": "npm run docs && npm run lint",
|
|
13
|
-
"pre-commit-install": "npx husky
|
|
14
|
-
"
|
|
15
|
-
"prepare": "husky install && npm run pre-push-install && npm run pre-commit-install && npm run commit-msg-install"
|
|
13
|
+
"pre-commit-install": "npx husky set .husky/pre-commit 'npm run pre-commit'",
|
|
14
|
+
"prepare": "husky install && npm run pre-push-install && npm run pre-commit-install"
|
|
16
15
|
},
|
|
17
16
|
"husky": {
|
|
18
17
|
"hooks": {
|