This file contains hidden or 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
| fixVersion in unreleasedVersions() OR fixVersion is EMPTY |
This file contains hidden or 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
| sprint in openSprints() |
This file contains hidden or 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
| # C:\Users\<username>\.bash_profile | |
| # Run `touch ~/.bash_profile` if this is the first time | |
| # See https://github.com/docker/machine/issues/1709#issuecomment-134768100 | |
| # Need environment variables each time a shell is opened | |
| eval `docker-machine env default` | |
| #export DOCKER_IP=$(docker-machine ip default) | |
| # Regenerate certificates when network changes | |
| alias rc='docker-machine regenerate-certs default -f' |
This file contains hidden or 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
| public class Startup | |
| { | |
| public void ConfigureServices(IServiceCollection services) | |
| { | |
| services.AddLogging(builder => | |
| { | |
| builder.AddConfiguration(Configuration.GetSection("Logging")) | |
| .AddConsole() | |
| .AddDebug(); | |
| }); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <system.webServer> | |
| <rewrite> | |
| <rules> | |
| <rule name="Redirect to www" stopProcessing="true"> | |
| <match url="(.*)" /> | |
| <conditions trackAllCaptures="false"> | |
| <add input="{HTTP_HOST}" pattern="^(?!www\.)" /> | |
| </conditions> |
This file contains hidden or 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
| const path = require("path"), | |
| VisualRegressionCompare = require("wdio-visual-regression-service/compare"); | |
| const getScreenshotPath = (folder) => { | |
| return (context) => { | |
| const browserVersion = parseInt(/\d+/.exec(context.browser.version)[0]); | |
| const filePathParts = [ | |
| __dirname, | |
| "screenshots", |
This file contains hidden or 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
| // Compiler for nunjucks templates when using Mocha, based on | |
| // http://www.hammerlab.org/2015/02/14/testing-react-web-apps-with-mocha/ | |
| // and | |
| // https://github.com/at0g/nunjucks-loader/blob/master/index.js. | |
| // Similar to https://github.com/rotundasoftware/nunjucksify | |
| // | |
| // The reason is that templates are loaded with webpack via nunjucks-loader. | |
| // By default Mocha would try and load the template as JS. | |
| // This compiler intercepts the call to require the njk template and does the following: | |
| // - Loads the nunjucks template |
This file contains hidden or 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
| [options] | |
| module.name_mapper.extension='scss' -> '<PROJECT_ROOT>/SCSSFlowStub.js.flow' |
This file contains hidden or 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
| [options] | |
| module.name_mapper='^@nice-digital\/nds-\([^\/]+\)$' -> '<PROJECT_ROOT>/packages/nds-\1/src/\1.js' | |
| module.name_mapper='^@nice-digital\/nds-\([^\/]+\)\/lib\/\(.*\)$' -> '<PROJECT_ROOT>/packages/nds-\1/src/\2.js' |