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

Commit

Permalink
moved deps to deps.ts (#62)
Browse files Browse the repository at this point in the history
* moved deps to deps.ts
* moved from v to no-v version
* re-add 1.0.0 and 1.1.0
  • Loading branch information
Tomasz Gałkowski authored Sep 26, 2020
1 parent e854613 commit 7af91c9
Show file tree
Hide file tree
Showing 37 changed files with 39 additions and 35 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- adds lens function

### Changed
- moved dependencies to a single file

## [0.3.0] - 2020-05-14

### Added
Expand Down
1 change: 1 addition & 0 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "https://deno.land/[email protected]/testing/asserts.ts";
2 changes: 1 addition & 1 deletion test/compose_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

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

Expand Down
2 changes: 1 addition & 1 deletion test/concat_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

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

Expand Down
2 changes: 1 addition & 1 deletion test/curry_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

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

Expand Down
2 changes: 1 addition & 1 deletion test/either_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
assertThrows,
assertThrowsAsync,
assert,
} from "https://deno.land/[email protected]/testing/asserts.ts";
} from "../deps.ts";

import left from "../lib/either/left.ts";
import right from "../lib/either/right.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/equals_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

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

Expand Down
2 changes: 1 addition & 1 deletion test/filter_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

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

Expand Down
2 changes: 1 addition & 1 deletion test/find_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

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

Expand Down
2 changes: 1 addition & 1 deletion test/flatten_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

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

Expand Down
2 changes: 1 addition & 1 deletion test/group_by_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import groupBy from "../lib/group_by.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/has_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import has from "../lib/has.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/head_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import head from "../lib/head.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/identity_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import identity from "../lib/identity.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/includes_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import includes from "../lib/includes.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/keys_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import keys from "../lib/keys.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/last_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import last from "../lib/last.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/lens_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import lens from "../lib/lens.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/map_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import map from "../lib/map.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/maybe_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import maybe, { mapMaybe } from "../lib/maybe.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/memoize_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import memoize from "../lib/memoize.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/nth_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import nth from "../lib/nth.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/omit_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import omit from "../lib/omit.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/partition_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";
import partition from "../lib/partition.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion test/pick_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import pick from "../lib/pick.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/pipe_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import pipe from "../lib/pipe.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/pluck_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import pluck from "../lib/pluck.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/prop_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import prop from "../lib/prop.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/reduce_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import reduce from "../lib/reduce.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/reverse_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import reverse from "../lib/reverse.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/set_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import lens from "../lib/lens.ts";
import set from "../lib/set.ts";
Expand Down
2 changes: 1 addition & 1 deletion test/slice_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import slice from "../lib/slice.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/sort_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import sort from "../lib/sort.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/split_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import split from "../lib/split.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/tail_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import tail from "../lib/tail.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/values_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import values from "../lib/values.ts";

Expand Down
2 changes: 1 addition & 1 deletion test/view_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { assertEquals } from "../deps.ts";

import lens from "../lib/lens.ts";
import view from "../lib/view.ts";
Expand Down

0 comments on commit 7af91c9

Please sign in to comment.