@vamship/build-utils 1.4.0 → 1.4.3
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/package.json +11 -11
- package/src/project.js +3 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vamship/build-utils",
|
3
|
-
"version": "1.4.
|
3
|
+
"version": "1.4.3",
|
4
4
|
"description": "Utility library for build tooling",
|
5
5
|
"main": "src/index.js",
|
6
6
|
"scripts": {
|
@@ -43,26 +43,26 @@
|
|
43
43
|
"devDependencies": {
|
44
44
|
"chai": "^4.3.6",
|
45
45
|
"chai-as-promised": "^7.1.1",
|
46
|
-
"eslint": "^8.
|
46
|
+
"eslint": "^8.18.0",
|
47
47
|
"jsdoc": "^3.6.10",
|
48
|
-
"mocha": "^
|
49
|
-
"nodemon": "^2.0.
|
48
|
+
"mocha": "^10.0.0",
|
49
|
+
"nodemon": "^2.0.18",
|
50
50
|
"nyc": "^15.1.0",
|
51
|
-
"prettier": "^2.
|
51
|
+
"prettier": "^2.7.1",
|
52
52
|
"rewire": "^6.0.0",
|
53
|
-
"sinon": "^
|
53
|
+
"sinon": "^14.0.0",
|
54
54
|
"sinon-chai": "^3.7.0"
|
55
55
|
},
|
56
56
|
"dependencies": {
|
57
57
|
"camelcase": "^6.3.0",
|
58
58
|
"delete": "^1.1.0",
|
59
59
|
"docdash": "^1.2.0",
|
60
|
-
"dotenv": "^16.0.
|
61
|
-
"dotenv-expand": "^8.0.
|
60
|
+
"dotenv": "^16.0.1",
|
61
|
+
"dotenv-expand": "^8.0.3",
|
62
62
|
"execa": "^5.1.1",
|
63
63
|
"fancy-log": "^2.0.0",
|
64
64
|
"mkdirp": "^1.0.4",
|
65
|
-
"semver": "^7.3.
|
65
|
+
"semver": "^7.3.7"
|
66
66
|
},
|
67
67
|
"peerDependencies": {
|
68
68
|
"@typescript-eslint/eslint-plugin": ">= 5.1.0",
|
@@ -82,8 +82,8 @@
|
|
82
82
|
},
|
83
83
|
"optionalDependencies": {
|
84
84
|
"gulp-jsdoc3": "= 3.0.0",
|
85
|
-
"typedoc": ">=0.
|
86
|
-
"typescript": ">=4.
|
85
|
+
"typedoc": ">=0.23.2",
|
86
|
+
"typescript": ">=4.7.4"
|
87
87
|
},
|
88
88
|
"engines": {
|
89
89
|
"node": ">= 14.18.1",
|
package/src/project.js
CHANGED
@@ -504,7 +504,9 @@ module.exports = class Project {
|
|
504
504
|
}
|
505
505
|
envFiles
|
506
506
|
.filter((file) => _fs.existsSync(file))
|
507
|
-
.forEach((file) =>
|
507
|
+
.forEach((file) =>
|
508
|
+
_dotEnvExpand.expand(_dotEnv.config({ path: file }))
|
509
|
+
);
|
508
510
|
}
|
509
511
|
|
510
512
|
/**
|