Put this plugin after the plugin you're debugging to see how it transformed your code.
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 { css } from '@emotion/core' | |
import { Result } from 'antd' | |
import { useEffect, useRef } from 'react' | |
import { ListTapes } from 'types/graphql' | |
const previewCss = css` | |
border-radius: 12px; | |
max-height: 600px; | |
max-width: 100%; | |
` |
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
type ParamType<constraint> = constraint extends 'Int' ? number : constraint extends 'Boolean' ? boolean : constraint extends 'Float' ? number : string | |
type RouteParams<Route> = Route extends `${string}/${infer Rest}` | |
? A.Compute<ParsedParams<Rest>> | |
: {} | |
type QueryParams = Record<string | number, string | number | boolean> | |
type ParsedParams<PartialRoute> = | |
// {a:Int}/[...moar] |
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
Show hidden characters
"tailwindCSS.experimental.classRegex": [ | |
"tw`([^`]*)", // tw`...` | |
"tw=\"([^\"]*)", // <div tw="..." /> | |
"tw={\"([^\"}]*)", // <div tw={"..."} /> | |
"tw\\.\\w+`([^`]*)", // tw.xxx`...` | |
"tw\\(.*?\\)`([^`]*)", // tw(Component)`...` | |
".*ClassName=\"([^\"]*)", // <div activeClassName="..." /> | |
["class[nN]ames\\(([^)]*)\\)", "'([^']*)'"] // classNames('..', '..') | |
], |
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
yarn run v1.22.10 | |
$ /Users/dac09/Projects/prisma-ts-reproduction/node_modules/.bin/tsc | |
../.redwood/types/routes.d.ts(4,41): error TS1110: Type expected. | |
../.redwood/types/routes.d.ts(4,61): error TS1005: '}' expected. | |
../.redwood/types/routes.d.ts(4,66): error TS1128: Declaration or statement expected. | |
../.redwood/types/routes.d.ts(4,67): error TS1128: Declaration or statement expected. | |
../.redwood/types/routes.d.ts(4,69): error TS1005: ';' expected. | |
../.redwood/types/routes.d.ts(4,76): error TS1005: ';' expected. | |
../.redwood/types/routes.d.ts(4,87): error TS1128: Declaration or statement expected. | |
../.redwood/types/routes.d.ts(4,167): error TS1005: ';' expected. |
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
{ | |
kind: 'subscription_canceled', | |
timestamp: '2020-06-18T17:06:03Z', | |
subject: { | |
subscription: { | |
addOns: [], | |
balance: '0.00', | |
billingDayOfMonth: 17, | |
billingPeriodEndDate: '2020-07-16', | |
billingPeriodStartDate: '2020-06-17', |
Click on the project you want to rename in the "Project navigator" on the left of the Xcode view.
On the right select the "File inspector" and the name of your project should be in there under "Identity and Type", change it to the new name.
Click "Rename" in a dropdown menu
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
.floatUp-enter { | |
opacity: 0.1; | |
transform: translate3d(0, 30%, 0); | |
} | |
.floatUp-enter.floatUp-enter-active { | |
opacity: 1; | |
transform: translate3d(0, 0, 0); | |
transition: all ease-in-out 400ms; | |
} |
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
case $CONFIGURATION in | |
*"Debug"*) | |
cp -f $SRCROOT/Firebase/staging/GoogleService-Info.plist ${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app;; | |
*"Release-Staging"*) | |
cp -f $SRCROOT/Firebase/staging/GoogleService-Info.plist ${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app;; | |
*"Release-Production"*) | |
cp -f $SRCROOT/Firebase/prod/GoogleService-Info.plist ${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app;; | |
esac |