This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rc-4.0.0' into upgrade-karma-jasmine
- Loading branch information
Showing
16 changed files
with
474 additions
and
221 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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 3.11.0 (2019-10-28) | ||
|
||
- Updated the local server to use the self-signed certificate implementation introduced in `@skyux-sdk/[email protected]`. See the [SSL documentation](https://developer.blackbaud.com/skyux/learn/get-started/prereqs/ssl-certificate). [#168](https://github.com/blackbaud/skyux-sdk-builder/pull/168) | ||
|
||
# 3.10.0 (2019-09-30) | ||
|
||
- Upgraded `help-client` to `2.1.0`. [#161](https://github.com/blackbaud/skyux-sdk-builder/pull/161) Thanks, [@Blackbaud-ColbyWhite](https://github.com/Blackbaud-ColbyWhite)! | ||
|
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
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,33 @@ | ||
/*jslint node: true */ | ||
'use strict'; | ||
|
||
const fs = require('fs-extra'); | ||
const logger = require('@blackbaud/skyux-logger'); | ||
|
||
function error(prop, code) { | ||
logger.error(`Unable to resolve certificate property ${prop} (code ${code}).`); | ||
logger.error('Please install the latest SKY UX CLI and run `skyux certs install`.'); | ||
} | ||
|
||
function read(argv, prop) { | ||
if (!argv[prop]) { | ||
error(prop, 0); | ||
} else if (!fs.pathExistsSync(argv[prop])) { | ||
error(prop, 1); | ||
} else { | ||
return fs.readFileSync(argv[prop]); | ||
} | ||
} | ||
|
||
function readCert(argv) { | ||
return read(argv, 'sslCert'); | ||
} | ||
|
||
function readKey(argv) { | ||
return read(argv, 'sslKey'); | ||
} | ||
|
||
module.exports = { | ||
readCert, | ||
readKey | ||
}; |
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 |
---|---|---|
|
@@ -83,7 +83,7 @@ function run(command, argv, specsPattern) { | |
}); | ||
} | ||
|
||
server.start(); | ||
server.start(argv); | ||
}); | ||
} | ||
|
||
|
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
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
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.