Skip to content

Commit

Permalink
ignore build directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie ⚡ committed Jun 25, 2022
1 parent 2a64acf commit e2cfa84
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
3 changes: 3 additions & 0 deletions packages/errors/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
node_modules
.turbo
3 changes: 3 additions & 0 deletions packages/metakit/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
node_modules
.turbo
6 changes: 5 additions & 1 deletion packages/metakit/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import { load } from "cheerio";

export class MetaKit {}
export class MetaKit {
constructor(html: string) {
load(html);
}
}
3 changes: 3 additions & 0 deletions packages/utils/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
node_modules
.turbo

0 comments on commit e2cfa84

Please sign in to comment.