Skip to content

Commit

Permalink
chore: Prepend missing license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Github committed May 17, 2022
1 parent b86021b commit 952beaa
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
export * from "./src/crayon.ts";
export * from "./src/conversions.ts";
export * from "./src/styles.ts";
Expand Down
1 change: 1 addition & 0 deletions scripts/dnt_crayon.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
import { build, emptyDir } from "https://deno.land/x/[email protected]/mod.ts";

await emptyDir("./node");
Expand Down
1 change: 1 addition & 0 deletions src/conversions.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
/**
* Converts 4Bit (16) ANSI color representation to 3Bit (8) ANSI
*/
Expand Down
1 change: 1 addition & 0 deletions src/crayon.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
import {
ansi3,
ansi4,
Expand Down
1 change: 1 addition & 0 deletions src/extensions/chalk_aliases.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
import { ansi8, attributes, BaseColors, colors, StyleCode } from "../styles.ts";
import {
buildCrayon,
Expand Down
1 change: 1 addition & 0 deletions src/extensions/css_keywords.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
import { buildCrayon, Crayon, mapPrototypeStyles } from "../crayon.ts";
import { GetMapKeys } from "../util.ts";

Expand Down
1 change: 1 addition & 0 deletions src/extensions/literal.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
import { functions, prototype, styles } from "../crayon.ts";
import { replace, replaceAll } from "../util.ts";

Expand Down
1 change: 1 addition & 0 deletions src/styles.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
import {
ansi4ToAnsi3,
ansi8ToAnsi4,
Expand Down
1 change: 1 addition & 0 deletions src/util.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
export function getNoColor(): string | boolean {
if (isDeno()) {
// @ts-ignore Deno compatibility
Expand Down
1 change: 1 addition & 0 deletions tests/bench.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
import { crayon } from "../mod.ts";
import "../src/extensions/literal.ts";
import oldCrayon from "https://deno.land/x/[email protected]/mod.ts";
Expand Down
1 change: 1 addition & 0 deletions tests/test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Copyright 2022 Im-Beast. All rights reserved. MIT license.
import {
buildCrayon,
colorSupport,
Expand Down

0 comments on commit 952beaa

Please sign in to comment.