@vamship/build-utils 1.0.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vamship/build-utils",
|
3
|
-
"version": "1.0
|
3
|
+
"version": "1.1.0",
|
4
4
|
"description": "Utility library for build tooling",
|
5
5
|
"main": "src/index.js",
|
6
6
|
"scripts": {
|
@@ -43,44 +43,50 @@
|
|
43
43
|
"devDependencies": {
|
44
44
|
"chai": "^4.3.4",
|
45
45
|
"chai-as-promised": "^7.1.1",
|
46
|
-
"eslint": "^7.
|
46
|
+
"eslint": "^8.7.0",
|
47
47
|
"jsdoc": "^3.6.7",
|
48
|
-
"mocha": "^9.1.
|
49
|
-
"nodemon": "^2.0.
|
48
|
+
"mocha": "^9.1.4",
|
49
|
+
"nodemon": "^2.0.15",
|
50
50
|
"nyc": "^15.1.0",
|
51
|
-
"prettier": "^2.
|
52
|
-
"rewire": "^
|
53
|
-
"sinon": "^
|
51
|
+
"prettier": "^2.5.1",
|
52
|
+
"rewire": "^6.0.0",
|
53
|
+
"sinon": "^12.0.1",
|
54
54
|
"sinon-chai": "^3.7.0"
|
55
55
|
},
|
56
56
|
"dependencies": {
|
57
|
-
"camelcase": "^6.
|
57
|
+
"camelcase": "^6.3.0",
|
58
58
|
"delete": "^1.1.0",
|
59
59
|
"docdash": "^1.2.0",
|
60
|
-
"dotenv": "^
|
61
|
-
"dotenv-expand": "^
|
60
|
+
"dotenv": "^14.2.0",
|
61
|
+
"dotenv-expand": "^6.0.1",
|
62
62
|
"execa": "^5.1.1",
|
63
|
-
"fancy-log": "^
|
63
|
+
"fancy-log": "^2.0.0",
|
64
64
|
"mkdirp": "^1.0.4",
|
65
65
|
"semver": "^7.3.5"
|
66
66
|
},
|
67
67
|
"peerDependencies": {
|
68
|
-
"@typescript-eslint/eslint-plugin": ">=
|
69
|
-
"@typescript-eslint/parser": ">=
|
68
|
+
"@typescript-eslint/eslint-plugin": ">= 5.1.0",
|
69
|
+
"@typescript-eslint/parser": ">= 5.1.0",
|
70
|
+
"eslint": ">= 7.32.0",
|
70
71
|
"fancy-log": ">= 1.3.3",
|
71
72
|
"gulp": ">= 4.0.2",
|
72
73
|
"gulp-eslint": ">= 6.0.0",
|
73
|
-
"gulp-jsdoc3": ">= 3.0.0",
|
74
74
|
"gulp-prettier": ">= 4.0.0",
|
75
75
|
"gulp-typedoc": ">= 3.0.1",
|
76
76
|
"gulp-typescript": ">= 5.0.1",
|
77
77
|
"gulp-zip": ">= 5.1.0",
|
78
|
+
"jsdoc": ">= 3.6.7",
|
78
79
|
"mocha": ">= 9.1.2",
|
79
80
|
"nyc": ">= 15.1.0",
|
80
81
|
"prettier": ">= 2.4.1"
|
81
82
|
},
|
82
83
|
"optionalDependencies": {
|
83
|
-
"
|
84
|
-
"
|
84
|
+
"gulp-jsdoc3": "= 3.0.0",
|
85
|
+
"typedoc": ">=0.22.11",
|
86
|
+
"typescript": ">=4.5.4"
|
87
|
+
},
|
88
|
+
"engines": {
|
89
|
+
"node": ">= 14.18.1",
|
90
|
+
"npm": ">= 8.1.0"
|
85
91
|
}
|
86
92
|
}
|
@@ -42,10 +42,11 @@ module.exports = (project, options) => {
|
|
42
42
|
: [version, major, `${major}.${minor}`];
|
43
43
|
|
44
44
|
const tags = tagList.map((tag) => `${repo}:${tag}`);
|
45
|
+
const latestTag = `${repo}:latest`;
|
45
46
|
|
46
47
|
const tasks = tags.map((tag) => {
|
47
48
|
const tagTask = () =>
|
48
|
-
_execa(dockerBin, ['tag', tag], {
|
49
|
+
_execa(dockerBin, ['tag', latestTag, tag], {
|
49
50
|
stdio: 'inherit',
|
50
51
|
});
|
51
52
|
tagTask.displayName = `publish-docker-tag-${tag}${suffix}`;
|