-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Fixing lerna setup for proper mono-repo build/clean/bootstrap
- Loading branch information
Showing
75 changed files
with
8,489 additions
and
10,503 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.1.21](https://github.com/csperbeck/azure-bake/compare/v0.1.5...v0.1.21) (2019-02-15) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* Added util to lookup current ingredient source value ([b3f2ba0](https://github.com/csperbeck/azure-bake/commit/b3f2ba0)) | ||
* **system:** Fixed [#12](https://github.com/csperbeck/azure-bake/issues/12) - bake.yaml with no variables defined was failing ([500b5a7](https://github.com/csperbeck/azure-bake/commit/500b5a7)) | ||
* Adds 3 ingredients for web apps (webapp, traffic manager, custom hostnames with ssl), teaches core-utils how to recognize a primary region, and cleans up boilerplate code for deploying arm templates through ingredients into a helper package. ([0304458](https://github.com/csperbeck/azure-bake/commit/0304458)) | ||
* fixes truncation of environment file ([#17](https://github.com/csperbeck/azure-bake/issues/17)) ([fea40e6](https://github.com/csperbeck/azure-bake/commit/fea40e6)) | ||
* fixing lerna public publish ([341ca98](https://github.com/csperbeck/azure-bake/commit/341ca98)) | ||
* fixing peerDep for core module ([a2cea1c](https://github.com/csperbeck/azure-bake/commit/a2cea1c)) | ||
* refactored template to source/BakeVariable ([9d9b405](https://github.com/csperbeck/azure-bake/commit/9d9b405)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [0.1.21](https://github.com/HomecareHomebase/azure-bake/compare/v0.1.5...v0.1.21) (2019-02-15) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* Adds 3 ingredients for web apps (webapp, traffic manager, custom hostnames with ssl), teaches core-utils how to recognize a primary region, and cleans up boilerplate code for deploying arm templates through ingredients into a helper package. ([0304458](https://github.com/HomecareHomebase/azure-bake/commit/0304458)) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/node_modules/sshpk/bin/sshpk-conv" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/node_modules/sshpk/bin/sshpk-conv" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@IF EXIST "%~dp0\node.exe" ( | ||
"%~dp0\node.exe" "%~dp0\node_modules\sshpk\bin\sshpk-conv" %* | ||
) ELSE ( | ||
@SETLOCAL | ||
@SET PATHEXT=%PATHEXT:;.JS;=;% | ||
node "%~dp0\node_modules\sshpk\bin\sshpk-conv" %* | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/node_modules/sshpk/bin/sshpk-sign" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/node_modules/sshpk/bin/sshpk-sign" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@IF EXIST "%~dp0\node.exe" ( | ||
"%~dp0\node.exe" "%~dp0\node_modules\sshpk\bin\sshpk-sign" %* | ||
) ELSE ( | ||
@SETLOCAL | ||
@SET PATHEXT=%PATHEXT:;.JS;=;% | ||
node "%~dp0\node_modules\sshpk\bin\sshpk-sign" %* | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/node_modules/sshpk/bin/sshpk-verify" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/node_modules/sshpk/bin/sshpk-verify" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@IF EXIST "%~dp0\node.exe" ( | ||
"%~dp0\node.exe" "%~dp0\node_modules\sshpk\bin\sshpk-verify" %* | ||
) ELSE ( | ||
@SETLOCAL | ||
@SET PATHEXT=%PATHEXT:;.JS;=;% | ||
node "%~dp0\node_modules\sshpk\bin\sshpk-verify" %* | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") | ||
|
||
case `uname` in | ||
*CYGWIN*) basedir=`cygpath -w "$basedir"`;; | ||
esac | ||
|
||
if [ -x "$basedir/node" ]; then | ||
"$basedir/node" "$basedir/node_modules/uuid/bin/uuid" "$@" | ||
ret=$? | ||
else | ||
node "$basedir/node_modules/uuid/bin/uuid" "$@" | ||
ret=$? | ||
fi | ||
exit $ret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@IF EXIST "%~dp0\node.exe" ( | ||
"%~dp0\node.exe" "%~dp0\node_modules\uuid\bin\uuid" %* | ||
) ELSE ( | ||
@SETLOCAL | ||
@SET PATHEXT=%PATHEXT:;.JS;=;% | ||
node "%~dp0\node_modules\uuid\bin\uuid" %* | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.