// app.jsx
import React from "react";
import styled from "@fabyscore/styled.macro";
const Container = styled.div(`
#@ {
color: red;
}
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
S3xJ2TnoYA(U475EI9DSv4))KzZ9CSD60XZTB39jkPND20X20su2CJePUKujX9STFZ2Z(iTVcBvfaibjb)rwsoDVxp9KejrqGcafkuO(5dxOFX7UyCEq6nH5xEB0n3oh(t(fxFX4vrxUminmo)YRxnB2LzldNefm)Y5HFoC(fNRRDX4GvPbxEDAyWNMhfhcLiysi8eJlgNnjnAz(LtdYdGQ)CQnonjolpD1K8K0ttMgEX4zRINKhLeF)v7NfoF2H3F1Q4O8ZMY)WRtdwecFom(ZVl4654hzvl9TdU)VD)v8)R4thDuwyEEu8nzqDExYQ7VArWD3FvCy407V65PHZtcGpendQPKfH3F1KK4zryHJYIFw(9xfSC58iSSrlweonkipC(DhOQzMCBq8nqfKFl8xXaDUCouyScNNKc)Cc(OOmwBfmFEYxGAT49f9OrNgeFkvtNlQItzvWlR0xhXOZrtuw2JosrnpSkmUAP6OAgh9BH)0SzWWBV1LCrLPTYpvm7o694e(ILjP5bX5J)0Q5ZFx4xZxLgsTYGkh27kk4lof4gZd5pC)4O5axZExhm5t3KMSkE6Eh8aPNxmomxuRF4dNfNhMod42F(XtN(tXzp)NXoE6ZjMMNNHV31jXHzxQB49XpEWA3s)CsuC((7njeBN9Kxpm62WG553Esqk2XklGg8NJS3KE3VeMMh(vIryFw35f)CqAgJ1iBFfZ4u)KE8bRFx845lVnO1ALE66xPJNempS1kLE6dEi6nrtd3hE7WyCL8F7OJ(Wl)a(bDBlBhly0)(RMgE9QBWF79zGmiyvYYW5Zp7vGyGzix6IvZZJoAoSgEvak8iB1sSHOkXXY0XGQKSfrZbzwlGb9W50VaRQUzv4mqmcwqpppwbNnpmmNANfbXrZcZYdystXkbBeqMmstlZVndErxndtgzMSCzAyww0NHhFDqCCyk9ZGSmCwhEoiZAzqum1A(EESx6ZHPWAOVKFl91FmklpJv03fLghC)vJNeHsdXgYYMrHqJeMfpH |
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
const loaderUtils = require("loader-utils"); | |
const path = require("path"); | |
const ruleChildren = loader => | |
loader.use || | |
loader.oneOf || | |
(Array.isArray(loader.loader) && loader.loader) || | |
[]; | |
const findIndexAndRules = (rulesSource, ruleMatcher) => { |
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 subprocess | |
import os | |
import sys | |
# pipelines definitions -------------------------------------------------- | |
PIPELINES = { | |
"docker/ci-base/": "BUILD_CIBASE", | |
"docker/go-develop/": "BUILD_GODEVELOP", | |
"docker/js-develop/": "BUILD_JSDEVELOP", |
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
{ | |
"name": "landing", | |
"private": true, | |
"license": "UNLICENSED", | |
"dependencies": { | |
"@types/jest": "^24.0.14", | |
"@types/node": "^12.0.8", | |
"@types/react": "^16.8.20", | |
"@types/react-dom": "^16.8.4", | |
"@typescript-eslint/parser": "^1.10.2", |
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
.landing: | |
image: $BASE_IMAGE_PATH/js-develop:jsdev-1.0 | |
only: | |
variables: | |
- $BUILD_LANDING == "true" | |
.landing_dir_script: | |
- &landing_dir | | |
cd projects && cd landing |
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
image: $BASE_IMAGE_PATH/ci-base:cibase-1.0 | |
stages: | |
- bootstrap | |
- test | |
- build | |
- push | |
- deploy | |
include: |
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 React, {PureComponent} from "react"; | |
//#region lazy-imports | |
//#endregion | |
//#region component-helpers | |
//#endregion |