Skip to content

Commit dded8af

Browse files
authored
Merge pull request #43 from bliblidotcom/fix-transform-runtime
Fix transform runtime -- testing and other stuffs will follow
2 parents ad73e6e + 1f21238 commit dded8af

Some content is hidden

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

57 files changed

+963
-3600
lines changed

.babelrc

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
11
{
22
"presets": [
3-
[
4-
"env",
5-
{
6-
"targets": {
7-
"browsers": [
8-
"last 2 versions"
9-
]
10-
}
11-
}
12-
]
3+
["es2015", {
4+
"modules": false
5+
}],
6+
"flow-vue"
137
],
148
"plugins": [
15-
"transform-vue-jsx",
16-
"transform-object-rest-spread"
9+
"babel-plugin-espower",
10+
"transform-runtime"
1711
],
1812
"env": {
1913
"test": {
20-
"plugins": [
21-
"istanbul"
22-
]
14+
"plugins": ["istanbul"],
15+
"presets": ["power-assert"]
2316
}
2417
}
2518
}

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
dist/
22
build/
33
demo/
4-
node_modules/
4+
node_modules/
5+
config/*.js

.eslintrc

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"root": true,
3+
"plugins": [
4+
"flowtype"
5+
],
6+
"extends": [
7+
"plugin:vue-libs/recommended",
8+
"plugin:flowtype/recommended"
9+
],
10+
"rules": {
11+
"object-curly-spacing": [
12+
"error",
13+
"always"
14+
],
15+
"no-multiple-empty-lines": [
16+
"error",
17+
{
18+
"max": 2,
19+
"maxBOF": 1
20+
}
21+
]
22+
}
23+
}

.eslintrc.js

Lines changed: 0 additions & 19 deletions
This file was deleted.

.flowconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[ignore]
2+
.*/node_modules/.*
3+
.*/docs/.*
4+
.*/test/.*
5+
.*/config/.*
6+
.*/examples/.*
7+
8+
[include]
9+
10+
[libs]
11+
decls
12+
13+
[options]

.github/ISSUE_TEMPLATE.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!--
2+
Thank you for contributing! Please carefully read the following before opening your issue.
3+
4+
Got a question?
5+
===============
6+
The issue list of this repo is **exclusively** for bug reports and feature requests. For simple questions, please use the following resources:
7+
8+
- Read the docs: https://github.com/bliblidotcom/vue-rangedate-picker/blob/dev/README.md
9+
- Ask in the Gitter chat room: https://gitter.im/vuejs/vue
10+
- Ask on the forums: http://forum.vuejs.org/
11+
- Look for/ask questions on stack overflow: https://stackoverflow.com/questions/ask?tags=vue-rangedate-picker
12+
13+
Reporting a bug?
14+
================
15+
- Try to search for your issue, it may have already been answered or even fixed in the `dev` branch.
16+
17+
- Check if the issue is reproducible with the latest stable version of Vue. If you are using a pre-release, please indicate the specific version you are using.
18+
19+
- It is recommended that you make a JSFiddle/JSBin/Codepen to demonstrate your issue. You could start with [this template](http://jsfiddle.net/5sH6A/) that already includes the latest version of Vue.
20+
21+
- For bugs that involves build setups, you can create a reproduction repository with steps in the README.
22+
23+
- 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.
24+
25+
Have a feature request?
26+
=======================
27+
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.
28+
-->
29+
30+
<!-- BUG REPORT TEMPLATE -->
31+
### vue & vue-rangedate-picker version
32+
2.0.x, x.y.z
33+
34+
### Reproduction Link
35+
<!-- A minimal JSBin, JSFiddle, Codepen, or a GitHub reprository that can reproduce the bug. -->
36+
37+
### Steps to reproduce
38+
39+
### What is Expected?
40+
41+
### What is actually happening?

.github/PULL_REQUEST_TEMPLATE.md

Whitespace-only changes.

.stylelintignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

.stylelintrc

Lines changed: 0 additions & 7 deletions
This file was deleted.

.travis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: node_js
2-
node_js: '7'
3-
script: npm run build:dll && npm run test
4-
after_script:
5-
- npm install -g codecov
6-
- codecov
2+
node_js:
3+
- "6"
4+
before_install:
5+
- npm install -g phantomjs

0 commit comments

Comments
 (0)