Skip to content

Commit

Permalink
Add build and WIP parser
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtimebuddy committed Mar 5, 2024
1 parent f8ad032 commit 83cad1e
Show file tree
Hide file tree
Showing 9 changed files with 770 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm ci
- name: Test
run: npm test
- name: Build
run: npm run build
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
node_modules
node_modules
dist
.DS_Store
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode"]
}
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
// Automatically format when saving
"editor.formatOnSave": true,
// Use prettier for formatting
"editor.defaultFormatter": "esbenp.prettier-vscode",
// Make the default behavior consistent with prettier
// by making sure there's always a trailing newline
"editor.trimAutoWhitespace": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true
}
Loading

0 comments on commit 83cad1e

Please sign in to comment.