cdk8s-image
Advanced tools
Comparing version 0.1.79 to 0.1.80
{ | ||
"tasks": { | ||
"clobber": { | ||
"name": "clobber", | ||
"category": "30.maintain", | ||
"description": "hard resets to HEAD of origin and cleans the local repo", | ||
"env": { | ||
"BRANCH": "$(git branch --show-current)" | ||
}, | ||
"steps": [ | ||
{ | ||
"exec": "git checkout -b scratch", | ||
"name": "save current HEAD in \"scratch\" branch" | ||
}, | ||
{ | ||
"exec": "git checkout $BRANCH" | ||
}, | ||
{ | ||
"exec": "git fetch origin", | ||
"name": "fetch latest changes from origin" | ||
}, | ||
{ | ||
"exec": "git reset --hard origin/$BRANCH", | ||
"name": "hard reset to origin commit" | ||
}, | ||
{ | ||
"exec": "git clean -fdx", | ||
"name": "clean all untracked files" | ||
}, | ||
{ | ||
"say": "ready to rock! (unpushed commits are under the \"scratch\" branch)" | ||
} | ||
], | ||
"condition": "git diff --exit-code > /dev/null" | ||
}, | ||
"compile": { | ||
@@ -4,0 +37,0 @@ "name": "compile", |
@@ -5,2 +5,14 @@ # Changelog | ||
### 0.1.80 (2020-12-22) | ||
### Features | ||
* logs when building & pushing images ([e99d702](https://github.com/eladb/cdk8s-image/commit/e99d702d704d936a252854cf8322d2fa97efbb66)) | ||
### Bug Fixes | ||
* upgrade to cdk8s 1.0.0-beta ([#95](https://github.com/eladb/cdk8s-image/issues/95)) ([6e5ff86](https://github.com/eladb/cdk8s-image/commit/6e5ff86151145e706473e9cc19a57155621e8215)), closes [#92](https://github.com/eladb/cdk8s-image/issues/92) | ||
### 0.1.79 (2020-12-22) | ||
@@ -7,0 +19,0 @@ |
@@ -12,2 +12,3 @@ { | ||
"start": "npx projen start", | ||
"clobber": "npx projen clobber", | ||
"compile": "npx projen compile", | ||
@@ -52,3 +53,3 @@ "test": "npx projen test", | ||
"json-schema": "^0.2.5", | ||
"projen": "^0.6.17", | ||
"projen": "^0.8.0", | ||
"standard-version": "^9.0.0", | ||
@@ -70,3 +71,3 @@ "ts-jest": "^26.1.0", | ||
"license": "Apache-2.0", | ||
"version": "0.1.79", | ||
"version": "0.1.80", | ||
"jest": { | ||
@@ -73,0 +74,0 @@ "clearMocks": true, |
{ | ||
"version": "0.1.79" | ||
"version": "0.1.80" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40829
313