Skip to content

Commit

Permalink
Remove import map
Browse files Browse the repository at this point in the history
It was causing issues when using thyme from deno.land
  • Loading branch information
Micha-ohne-el committed Jul 24, 2021
1 parent 928f00d commit 5b0c07c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
9 changes: 0 additions & 9 deletions import-map.json

This file was deleted.

2 changes: 1 addition & 1 deletion src/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {SimpleFormat} from '/types.ts';
import {SimpleFormat} from './types.ts';

export function now() {
return new Thyme();
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Thyme} from '/mod.ts';
import {Thyme} from './mod.ts';

export type SimpleFormat = SimpleFormatDescriptor[];
export interface SimpleFormatDescriptor {
Expand Down
2 changes: 1 addition & 1 deletion test/value_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Thyme} from '/mod.ts';
import {Thyme} from '../src/mod.ts';

import {assert, assertEquals, assertStringIncludes} from 'std/testing/asserts.ts';

Expand Down

0 comments on commit 5b0c07c

Please sign in to comment.