release-it-docker-plugin 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of release-it-docker-plugin might be problematic. Click here for more details.
- package/package.json +2 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "release-it-docker-plugin",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.2",
|
4
4
|
"description": "",
|
5
5
|
"keywords": [],
|
6
6
|
"repository": "",
|
@@ -8,6 +8,7 @@
|
|
8
8
|
"author": "Raiper34",
|
9
9
|
"license": "MIT",
|
10
10
|
"main": "src/index.js",
|
11
|
+
"type": "module",
|
11
12
|
"scripts": {
|
12
13
|
"build": "npx tsc"
|
13
14
|
},
|
package/src/index.js
CHANGED
@@ -2,7 +2,7 @@ import {BasePlugin} from "./base-plugin";
|
|
2
2
|
|
3
3
|
const DOCKER_HUB_BASE_URL = 'https://hub.docker.com';
|
4
4
|
|
5
|
-
export default class DockerPlugin extends BasePlugin{
|
5
|
+
export default class DockerPlugin extends BasePlugin {
|
6
6
|
|
7
7
|
async beforeRelease() {
|
8
8
|
if (this.options.build === false) return false;
|