Skip to content

Commit 67d472f

Browse files
author
surmon
committed
reconsitution
1 parent 7755c52 commit 67d472f

35 files changed

Lines changed: 1272 additions & 26248 deletions

.github/ISSUE_TEMPLATE.md

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,11 @@
1-
### 中文用户请注意:
21

3-
1. issue 只接受带重现的 bug 报告,请不要用来提问题!不符合要求的 issue 会被直接关闭。
4-
2. 请尽量用英文描述你的 issue,这样能够让尽可能多的人帮到你。
5-
6-
### Got a question?
2+
### 中文用户注意:
73

8-
- The issue list of this repo is **exclusively** for bug reports and feature requests. For simple questions, please use the following resources:
9-
10-
- Read the docs: https://vuejs.org/guide/
11-
- Look for/ask questions on stack overflow: https://stackoverflow.com/questions/ask?tags=vue.js
12-
13-
### Reporting a bug?
14-
15-
- Try to search for your issue, it may have already been answered or even fixed in the development branch.
16-
- It is **required** that you clearly describe the steps necessary to reproduce the issue you are running into. Issues with no clear repro steps will not be triaged. If an issue labeled "need repro" receives no further input from the issue author for more than 5 days, it will be closed.
17-
18-
- It is recommended that you make a JSFiddle/JSBin/Codepen to demonstrate your issue. You could start with [this template](https://jsfiddle.net/39epgLj0/) that already includes the latest version of Vue.
19-
20-
- For potential SSR (Server Side Rendering) issue or bugs that involves build setups, you can create a reproduction repository with steps in the README.
21-
22-
- If your issue is resolved but still open, don’t hesitate to close it. In case you found a solution by yourself, it could be helpful to explain how you fixed it.
23-
24-
### Have a feature request?
25-
26-
- Remove the template from below and provide thoughtful commentary *and code samples* on what this feature means for your product. What will it allow you to do that you can't do today? How will it make current work-arounds straightforward? What potential bugs and edge cases does it help to avoid? etc. Please keep it product-centric.
4+
1. 尽量用英文描述你的 issue
5+
2. 不要把内容堆彻在标题上,逻辑清晰地写在内容区
6+
3. 贴代码要提前格式化好,有颜色高亮那种,贴文本,不要贴图片
7+
4. 提问题前,必须仔细阅读 REMADE.md + 在已关闭的问题中寻找与自身相关的问题,90% 的可能它已经被解决
8+
5. **如果无法做到提一个合格、优秀的问题,则问题会被 close + block**
279

2810
### BUG REPORT TEMPLATE
2911

@@ -35,6 +17,6 @@
3517

3618
#### Steps to reproduce
3719

38-
#### What is Expected?
20+
#### What is Expected?
3921

4022
#### What is actually happening?

.gitignore

Lines changed: 30 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
# Logs
22
logs
33
*.log
4+
npm-debug.log
5+
selenium-debug.log
46
npm-debug.log*
57

6-
# Runtime data
7-
pids
8-
*.pid
9-
*.seed
8+
# System
9+
.DS_Store
1010

11-
# Directory for instrumented libs generated by jscoverage/JSCover
12-
lib-cov
11+
# Optional npm cache directory
12+
.npm
1313

14-
# Coverage directory used by tools like istanbul
15-
coverage
14+
# Optional REPL history
15+
.node_repl_history
16+
17+
# Project
18+
.editorconfig
1619

1720
# nyc test coverage
1821
.nyc_output
@@ -23,15 +26,28 @@ coverage
2326
# node-waf configuration
2427
.lock-wscript
2528

29+
# Runtime data
30+
pids
31+
*.pid
32+
*.seed
33+
34+
# Package
35+
package-lock.json
36+
37+
# Test
38+
test/unit/coverage
39+
test/e2e/reports
40+
41+
# Directory for instrumented libs generated by jscoverage/JSCover
42+
lib-cov
43+
44+
# Coverage directory used by tools like istanbul
45+
coverage
46+
2647
# Compiled binary addons (http://nodejs.org/api/addons.html)
2748
build/Release
2849

2950
# Dependency directories
3051
node_modules
52+
node_modules/
3153
jspm_packages
32-
33-
# Optional npm cache directory
34-
.npm
35-
36-
# Optional REPL history
37-
.node_repl_history

.npmignore

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
1-
# Dependency directories
1+
.github
2+
.DS_Store
3+
.babelrc
4+
.editorconfig
5+
.eslintrc.js
6+
.eslintignore
7+
.gitignore
8+
.travis.yml
9+
10+
test/
11+
test/unit/coverage
12+
test/e2e/reports
13+
14+
gh-pages/
15+
static/
16+
build/
17+
config/
218
node_modules
19+
node_modules/
20+
npm-debug.log
321
examples
4-
nuxt-ssr-example
22+
examples/
23+
24+
index.html
25+
config.js
26+
bower.json
27+
package-lock.json
28+
selenium-debug.log

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
## CHANGELOG
3+
4+
### v5.0.0
5+
6+
#### use
7+
1. add global default options
8+
2. update the options assign logic
9+
3. Update to [video.js6](https://github.com/videojs/video.js)
10+
11+
#### project
12+
- add brower support
13+
- add test scripts
14+
- update babel and webpack configs

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Simon Babay
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)