-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update this project to use the generator (#352)
- Loading branch information
1 parent
43f72a4
commit fa920a6
Showing
41 changed files
with
8,727 additions
and
119,004 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
8 | ||
10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.