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
| 'use strict' | |
| if (process.env.DEBUG == 'development') { | |
| setTimeout(() => { console.log("ENV", process.env) }, 1000); | |
| } | |
| import sirv from 'sirv'; | |
| import express from 'express'; | |
| import { Store } from 'svelte/store.js'; | |
| import session from './DynamoDBSession.js'; | |
| import * as sapper from '../__sapper__/server.js'; | |
| import fetch from 'node-fetch'; |
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
| import { pipe, fromValue, concat, map, subscribe } from 'wonka'; | |
| import { DocumentNode } from 'graphql'; | |
| import { request$, Request$ } from './request'; | |
| import { context$, Context$ } from './context'; | |
| import { source$ } from './source'; | |
| import { writable, derived, Writable, Readable } from 'svelte/store'; | |
| import { OperationContext, RequestPolicy } from '@urql/core'; | |
| export interface QueryArgs { |
OlderNewer