Skip to content

Commit

Permalink
Moving modules into src directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
coddingtonbear committed May 26, 2021
1 parent 5a7b7e0 commit 9d8308b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if you want to view the source visit the plugins github repository
`;

export default {
input: "main.ts",
input: "src/main.ts",
output: {
dir: ".",
sourcemap: "inline",
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion main.ts → src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getCodeBlockData } from 'code_block';
import { Plugin } from 'obsidian';

import { getCodeBlockData } from './code_block';
import { TableRenderer } from './render'

function renderErrorPre(container: HTMLElement, error: string): HTMLElement {
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 9d8308b

Please sign in to comment.