@mimik/configuration 6.0.9 → 6.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.
package/index.js CHANGED
@@ -647,7 +647,8 @@ export const setConfig = (pack, options) => {
647
647
  else process.env.SWAGGER_FILE_PROVIDER = 'bitbucket';
648
648
  }
649
649
 
650
- const apiFilename = `${process.env.SWAGGER_FILE_ACCOUNT}${SWAGGER_SEP}${process.env.SWAGGER_FILE_NAME}${SWAGGER_SEP}${process.env.SWAGGER_FILE_VERSION}${SWAGGER_SEP}${SWAGGER_EXT}`;
650
+ const apiFilename = `${process.env.SWAGGER_FILE_ACCOUNT}${SWAGGER_SEP}`
651
+ + `${process.env.SWAGGER_FILE_NAME}${SWAGGER_SEP}${process.env.SWAGGER_FILE_VERSION}${SWAGGER_SEP}${SWAGGER_EXT}`;
651
652
 
652
653
  configuration.serverSettings.name = process.env.SERVER_NAME;
653
654
  configuration.serverSettings.type = process.env.SERVER_TYPE;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mimik/configuration",
3
- "version": "6.0.9",
3
+ "version": "6.0.10",
4
4
  "description": "Common configuration for mimik services",
5
5
  "main": "./index.js",
6
6
  "exports": "./index.js",
@@ -21,32 +21,33 @@
21
21
  "author": "mimik technology inc <support@mimik.com> (https://developer.mimik.com/)",
22
22
  "license": "MIT",
23
23
  "engines": {
24
- "node": ">=24"
24
+ "node": ">=24.0.0"
25
25
  },
26
26
  "repository": {
27
27
  "type": "git",
28
28
  "url": "https://bitbucket.org/mimiktech/configuration"
29
29
  },
30
30
  "dependencies": {
31
- "@mimik/request-helper": "^2.0.5",
32
- "@mimik/sumologic-winston-logger": "^2.1.13",
31
+ "@mimik/request-helper": "^2.0.6",
32
+ "@mimik/sumologic-winston-logger": "^2.2.2",
33
33
  "@mimik/user-filters": "^2.0.4",
34
34
  "ip": "2.0.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@eslint/js": "9.39.3",
38
- "@mimik/eslint-plugin-document-env": "^2.0.8",
39
- "@stylistic/eslint-plugin": "5.9.0",
37
+ "@eslint/js": "9.39.4",
38
+ "@mimik/eslint-plugin-document-env": "^2.0.9",
39
+ "@mimik/eslint-plugin-logger": "^1.0.3",
40
+ "@stylistic/eslint-plugin": "5.10.0",
40
41
  "c8": "11.0.0",
41
42
  "chai": "6.2.2",
42
- "eslint": "9.39.3",
43
+ "eslint": "9.39.4",
43
44
  "eslint-plugin-import": "2.32.0",
44
45
  "esmock": "2.7.3",
45
- "globals": "17.3.0",
46
+ "globals": "17.4.0",
46
47
  "husky": "9.1.7",
47
48
  "mocha": "11.7.5",
48
49
  "mochawesome": "7.1.4",
49
50
  "jsdoc-to-markdown": "9.1.3",
50
- "sinon": "21.0.1"
51
+ "sinon": "21.0.3"
51
52
  }
52
53
  }
@@ -1,15 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(npm run lint)",
5
- "Bash(cat /Users/niburger/Projects/mimik/common/response-helper-145/test/*.js)",
6
- "Bash(ls -d /Users/niburger/Projects/mimik/common/*/test/)",
7
- "Bash(grep -rl \"esmock\" /Users/niburger/Projects/mimik/common/*/package.json)",
8
- "Bash(npm install)",
9
- "Bash(npm test)",
10
- "Bash(npx eslint test/)",
11
- "Bash(npx eslint test/ --fix)",
12
- "Bash(git status -u)"
13
- ]
14
- }
15
- }