Skip to content

Commit

Permalink
chore: update this project to use the generator (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey committed Jan 11, 2021
1 parent 43f72a4 commit fa920a6
Show file tree
Hide file tree
Showing 41 changed files with 8,727 additions and 119,004 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# http://editorconfig.org
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
41 changes: 33 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,36 @@
# OS
Thumbs.db
ehthumbs.db
Desktop.ini
.DS_Store
/node_modules/
._*

# Editors
*~
*.iml
*.ipr
*.iws
*.swp
dist
dist-test
npm-debug.log
deploy
*.tmproj
*.tmproject
*.sublime-*
.idea/
.project/
.settings/
.vscode/

# Logs
logs
*.log
npm-debug.log*

# Dependency directories
bower_components/
node_modules/

# Build-related directories
dist/
es/
cjs/
docs/api/
test/dist/
.eslintcache
.yo-rc.json
dist-test/
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8
10
16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mux.js Demo</title>
<link rel="icon" href="logo.svg">
</head>
<body>
<h1>use window.muxjs in the console!</h3>
<ul>
<li><a href="test/debug.html">Run unit tests in browser.</a></li>
</ul>

<script src="dist/mux.js"></script>
</body>
</html>
Loading

0 comments on commit fa920a6

Please sign in to comment.