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
// NOTE: we are just assuming _tests is an alright place to render to | |
export async function buildAndRunTests (cwd: string): Promise<void> { | |
const [{ once }] = cliopts.parse( | |
['o, once', 'run the tests and then exit'] | |
) | |
await file.mkdirs(join(cwd, '_tests')) | |
await buildBrowserTests(cwd) |
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
/* eslint-disable @typescript-eslint/no-var-requires */ | |
const { join } = require('path') | |
const { build, file, cliopts } = require('estrella') | |
module.exports = { | |
buildPackage, | |
buildBrowserAndNodeModule, | |
buildBrowserModule, | |
buildNodeModule |
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
/* eslint-disable @typescript-eslint/no-var-requires */ | |
const perf = require('perf_hooks') | |
const { spawn } = require('child_process') | |
const { cliopts, fmtDuration, findInPATH, log, stdoutStyle } = require('estrella') | |
module.exports = { | |
clock, | |
tscBuild | |
} |
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
clone() { | |
org=$(echo $1 | awk -F/ '{ print $1 }') | |
mkdir -p ~/src/github.com/$org | |
path=~/src/github.com/$1 | |
git clone $@ $path | |
cd $path | |
} | |
# Examples: | |
# $ clone myobie/dot-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
defmodule Gentle.Application do | |
use Application | |
def start(_type, _args) do | |
children = [ | |
{Task.Supervisor, name: Gentle.TaskSupervisor} | |
] | |
opts = [strategy: :one_for_one, name: Gentle.Supervisor] | |
Supervisor.start_link(children, opts) |
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review |
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
module.exports = { | |
root: true, | |
env: { | |
browser: true, | |
mocha: true | |
}, | |
globals: { | |
expect: true | |
}, | |
plugins: [], |
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
module.exports = { | |
root: true, | |
env: { | |
browser: true, | |
mocha: true | |
}, | |
globals: { | |
expect: true | |
}, | |
parser: '@typescript-eslint/parser', |
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
// NOTE: We must export or import at least one thing so we are not in | |
// the "global" scope, but in a module scope which is re-declarable. | |
// | |
// The error from tsserver is: 2451: Cannot redeclare block-scoped | |
// variable 'self'. | |
// | |
// Even tho this is not really a module and cannot be: ServiceWorkers | |
// cannot be modules. | |
export type Version = number |
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 { Socket, Channel } from 'phoenix' | |
import { encode, decode } from './serializer' | |
import createState, { UpdateCallback } from './create-state' | |
import { enableMapSet } from 'immer' | |
enableMapSet() | |
type MessageCallback = (payload?: unknown) => void | |
type ChannelState = { |