From 46f197eaccc4f9bcfbdc9f768ddc05866cc50253 Mon Sep 17 00:00:00 2001 From: Github Date: Sun, 12 Dec 2021 11:00:49 +0000 Subject: [PATCH] chore: Prepend missing license headers --- src/mouse.ts | 1 + tests/canvas.test.ts | 1 + tests/colors.test.ts | 1 + tests/event_emitter.test.ts | 1 + tests/render.test.ts | 1 + tests/tui.test.ts | 1 + tests/tui_component.test.ts | 1 + tests/util.test.ts | 1 + 8 files changed, 8 insertions(+) diff --git a/src/mouse.ts b/src/mouse.ts index 5da7805..4691780 100644 --- a/src/mouse.ts +++ b/src/mouse.ts @@ -1,3 +1,4 @@ +// Copyright 2021 Im-Beast. All rights reserved. MIT license. import { getInteractiveComponents, TuiInstance } from "./tui.ts"; import { AnyComponent } from "./types.ts"; import { clamp, getStaticValue } from "./util.ts"; diff --git a/tests/canvas.test.ts b/tests/canvas.test.ts index 300ca2e..4cb8c94 100644 --- a/tests/canvas.test.ts +++ b/tests/canvas.test.ts @@ -1,3 +1,4 @@ +// Copyright 2021 Im-Beast. All rights reserved. MIT license. import { CanvasStyler, compileStyler, diff --git a/tests/colors.test.ts b/tests/colors.test.ts index 63ed259..c249bde 100644 --- a/tests/colors.test.ts +++ b/tests/colors.test.ts @@ -1,3 +1,4 @@ +// Copyright 2021 Im-Beast. All rights reserved. MIT license. import { ansi3, ansi4, diff --git a/tests/event_emitter.test.ts b/tests/event_emitter.test.ts index 06661f3..2994e85 100644 --- a/tests/event_emitter.test.ts +++ b/tests/event_emitter.test.ts @@ -1,3 +1,4 @@ +// Copyright 2021 Im-Beast. All rights reserved. MIT license. import { assert, assertEquals, sleep } from "./deps.ts"; import { createEventEmitter } from "../src/event_emitter.ts"; diff --git a/tests/render.test.ts b/tests/render.test.ts index 782474a..99359c0 100644 --- a/tests/render.test.ts +++ b/tests/render.test.ts @@ -1,3 +1,4 @@ +// Copyright 2021 Im-Beast. All rights reserved. MIT license. import { createCanvas, drawPixel, diff --git a/tests/tui.test.ts b/tests/tui.test.ts index abb4794..3a19199 100644 --- a/tests/tui.test.ts +++ b/tests/tui.test.ts @@ -1,3 +1,4 @@ +// Copyright 2021 Im-Beast. All rights reserved. MIT license. import { createTui } from "../src/tui.ts"; import { getStaticValue } from "../src/util.ts"; import { assertEquals, canvas, styler } from "./deps.ts"; diff --git a/tests/tui_component.test.ts b/tests/tui_component.test.ts index 088c74c..7650836 100644 --- a/tests/tui_component.test.ts +++ b/tests/tui_component.test.ts @@ -1,3 +1,4 @@ +// Copyright 2021 Im-Beast. All rights reserved. MIT license. import { createTui } from "../src/tui.ts"; import { createComponent, diff --git a/tests/util.test.ts b/tests/util.test.ts index fd769bd..9a5ccf4 100644 --- a/tests/util.test.ts +++ b/tests/util.test.ts @@ -1,3 +1,4 @@ +// Copyright 2021 Im-Beast. All rights reserved. MIT license. import { capitalize, clamp,