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
diff --git a/node_modules/graphql-fetch-schema/lib/index.js b/node_modules/graphql-fetch-schema/lib/index.js | |
index 0411d13..bf385e4 100644 | |
--- a/node_modules/graphql-fetch-schema/lib/index.js | |
+++ b/node_modules/graphql-fetch-schema/lib/index.js | |
@@ -59,14 +59,14 @@ function () { | |
if (options.graphql) { | |
files.push({ | |
- filePath: _path.default.resolve(pathPrefix, 'schema.graphql'), | |
+ filePath: _path.default.resolve(pathPrefix, options.fileNamePrefix ? options.fileNamePrefix + '.schema.graphql' : 'schema.graphql'), |
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
# Get all variables and write to .env | |
ENV_WHITELIST=${ENV_WHITELIST:-"^"} | |
printf "Creating an .env file with the following whitelist:\n" | |
printf "%s\n\n" $ENV_WHITELIST | |
set | egrep -e $ENV_WHITELIST | egrep -v "^_" | egrep -v "WHITELIST" > .env | |
printf "\n.env created with contents:\n" | |
cat .env | |
# copy firebase config files |
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
#!/bin/sh | |
FOLDER_NAME=`date +\%y\%m\%d\%s` | |
echo "Enter bucket identifier (you can find it in project Settings)" | |
read BUCKET_NAME | |
echo "Enter target bucket" | |
read TARGET_BUCKET | |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDPBlteRYVBw7sECNd7oGpoX88LqP7PVFRjonHojQrDv8de2nbTRQAgYD1pVwYBZM7KKnllLjUQVt/STIbYhVyS0QBMu1DFE3X5H4GLXLkfuN77zDlMjMn1aNbxoGWsLFjSos+EmfqZo4FikrvI1ZfoeXHjJ4QKZX8f1baGTSiAjeYlQQom/xz5FHWvLv+nmmD1IT9qIRR8lef4FDTsS8AsKtVo3nrD9ApXGocNiOjziQzeD61cthyhKzUhQT7xgeLPoNRi5zo3KOasqFxtA1adfRQXJMBypgBPAwhaIyP5ZYYUngWm6mfSomi53ADXoeMuWRPsqFY19wzIMnQ4q4PX [email protected] |
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
{ | |
"parser": "babel-eslint", | |
"extends": "airbnb", | |
"env": { | |
"browser": true, | |
"node": true, | |
"jest": true, | |
"es6": true | |
}, | |
"globals": { |
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
[ignore] | |
; We fork some components by platform | |
.*/*[.]android.js | |
; Ignore "BUCK" generated dirs | |
<PROJECT_ROOT>/\.buckd/ | |
; Ignore unexpected extra "@providesModule" | |
.*/node_modules/.*/node_modules/fbjs/.* |
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
yup.addMethod(yup.string, 'domain', function pattern(name, message = VALIDATION_ERRORS.domain) { | |
const domainRules = [patterns.domain, patterns.punycode, patterns.cyrillicDomain]; | |
return this.test({ | |
message, | |
test: value => (value === null || value === '' || value === undefined) || domainRules.some(regex => regex.test(value)), | |
}); | |
}); | |
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
import Html exposing (Html, beginnerProgram, fieldset, input, label, text) | |
import Html.Attributes exposing (style, type_) | |
import Html.Events exposing (onClick) | |
main = | |
beginnerProgram { model = optOut, update = update, view = view } | |
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
// Абстрактный контрол для создания радио и чекбоксов выбора цвета | |
// | |
control_theme_colored(block) | |
.{block}_theme_colored | |
&.{block} | |
display: inline-block | |
margin: 0 9.5px 0 0 |
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
var btn = | |
[ | |
{ | |
buttonName: 'Button', | |
amount: 200, | |
isActive: false, | |
}, | |
{ | |
buttonName: 'Button', |
NewerOlder