Skip to content

Commit 9177427

Browse files
committed
chore: update license
1 parent 3787ead commit 9177427

21 files changed

+22
-22
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020-present the denosaurs team
3+
Copyright (c) 2020-2021 the denosaurs team
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,4 +582,4 @@ Pull request, issues and feedback are very welcome. Code style is formatted with
582582

583583
### Licence
584584

585-
Copyright 2020-present, the denosaurs team. All rights reserved. MIT license.
585+
Copyright 2020-2021, the denosaurs team. All rights reserved. MIT license.

denon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import { log } from "./deps.ts";
44

deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
// provide better logging, see src/log.ts
44
export * as log from "https://deno.land/x/[email protected]/mod.ts";

docs/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ Pull request, issues and feedback are very welcome. Code style is formatted with
88

99
### Licence
1010

11-
Copyright 2020-present, the denosaurs team. All rights reserved. MIT license.
11+
Copyright 2020-2021, the denosaurs team. All rights reserved. MIT license.

info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
export const VERSION = "2.4.7";
44
export const BRANCH = "main";

mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
export * from "./denon.ts";
44
export * from "./src/watcher.ts";

src/args.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
/** Regex to test if string matches version format */
44
const reVersion = /^v?[0-9]+\.[0-9]+\.[0-9]+$/;

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import {
44
blue,

src/closest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import { levenshtein } from "../deps.ts";
44

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import {
44
existsSync,

src/daemon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import { log } from "../deps.ts";
44

src/merge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
// deno-lint-ignore-file
44
export type Indexable = Record<string, any>;

src/runner.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import { Runner, RunnerConfig } from "./runner.ts";
44
import { assertEquals } from "../test_deps.ts";

src/runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import {
44
buildFlags,

src/scripts.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import { buildFlags, ScriptOptions } from "./scripts.ts";
44
import { assert, assertEquals } from "../test_deps.ts";

src/scripts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
/** Map of declared scripts,
44
* Used by `Runner`. */

src/templates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import { VERSION } from "../info.ts";
44

src/watcher.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import { assert } from "../test_deps.ts";
44

src/watcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
import { deferred, delay, globToRegExp, log, relative, walk } from "../deps.ts";
44

test_deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-present the denosaurs team. All rights reserved. MIT license.
1+
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

33
// *_test.ts files
44
export {

0 commit comments

Comments
 (0)