Skip to content

Commit 7d88c5c

Browse files
committed
chore: move index and browser entry points to src
1 parent d60b329 commit 7d88c5c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

browser.ts renamed to src/browser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { parseToJSON } from "./src/parser";
1+
import { parseToJSON } from "./parser";
22

33
/**
44
* Parses an OWL file to a json tree of nodes

index.ts renamed to src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { parseToJSON, parseToTable } from "./src/parser";
1+
import { parseToJSON, parseToTable } from "./parser";
22
import { program } from "commander";
3-
import { writeJSONFile, writeFile } from "./src/utils";
3+
import { writeJSONFile, writeFile } from "./utils";
44
import * as fs from "fs";
55

66
/**

0 commit comments

Comments
 (0)