Skip to content

Commit fa920a6

Browse files
chore: update this project to use the generator (#352)
1 parent 43f72a4 commit fa920a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+8727
-119004
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_style = space
8+
indent_size = 2
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitignore

+33-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,36 @@
1+
# OS
2+
Thumbs.db
3+
ehthumbs.db
4+
Desktop.ini
15
.DS_Store
2-
/node_modules/
6+
._*
7+
8+
# Editors
39
*~
4-
*.iml
5-
*.ipr
6-
*.iws
710
*.swp
8-
dist
9-
dist-test
10-
npm-debug.log
11-
deploy
11+
*.tmproj
12+
*.tmproject
13+
*.sublime-*
14+
.idea/
15+
.project/
16+
.settings/
17+
.vscode/
18+
19+
# Logs
20+
logs
21+
*.log
22+
npm-debug.log*
23+
24+
# Dependency directories
25+
bower_components/
26+
node_modules/
27+
28+
# Build-related directories
29+
dist/
30+
es/
31+
cjs/
32+
docs/api/
33+
test/dist/
34+
.eslintcache
35+
.yo-rc.json
36+
dist-test/

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8
1+
10

index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Mux.js Demo</title>
6+
<link rel="icon" href="logo.svg">
7+
</head>
8+
<body>
9+
<h1>use window.muxjs in the console!</h3>
10+
<ul>
11+
<li><a href="test/debug.html">Run unit tests in browser.</a></li>
12+
</ul>
13+
14+
<script src="dist/mux.js"></script>
15+
</body>
16+
</html>

0 commit comments

Comments
 (0)