Skip to content
This repository was archived by the owner on May 31, 2022. It is now read-only.

Commit 7af91c9

Browse files
author
Tomasz Gałkowski
authored
moved deps to deps.ts (#62)
* moved deps to deps.ts * moved from v to no-v version * re-add 1.0.0 and 1.1.0
1 parent e854613 commit 7af91c9

37 files changed

+39
-35
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- adds lens function
1212

13+
### Changed
14+
- moved dependencies to a single file
15+
1316
## [0.3.0] - 2020-05-14
1417

1518
### Added

deps.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "https://deno.land/std@0.42.0/testing/asserts.ts";

test/compose_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
1+
import { assertEquals } from "../deps.ts";
22

33
import compose from "../lib/compose.ts";
44

test/concat_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
1+
import { assertEquals } from "../deps.ts";
22

33
import concat from "../lib/concat.ts";
44

test/curry_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
1+
import { assertEquals } from "../deps.ts";
22

33
import curry from "../lib/curry.ts";
44

test/either_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
assertThrows,
44
assertThrowsAsync,
55
assert,
6-
} from "https://deno.land/std@v0.42.0/testing/asserts.ts";
6+
} from "../deps.ts";
77

88
import left from "../lib/either/left.ts";
99
import right from "../lib/either/right.ts";

test/equals_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
1+
import { assertEquals } from "../deps.ts";
22

33
import equals from "../lib/equals.ts";
44

test/filter_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
1+
import { assertEquals } from "../deps.ts";
22

33
import filter from "../lib/filter.ts";
44

test/find_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
1+
import { assertEquals } from "../deps.ts";
22

33
import find from "../lib/find.ts";
44

test/flatten_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@v0.42.0/testing/asserts.ts";
1+
import { assertEquals } from "../deps.ts";
22

33
import flatten from "../lib/flatten.ts";
44

0 commit comments

Comments
 (0)