Skip to content

Commit

Permalink
Merge pull request #9 from meloalright/dev-1.1.7
Browse files Browse the repository at this point in the history
Dev 1.1.7
  • Loading branch information
meloalright authored Aug 5, 2019
2 parents 5badb7c + db31299 commit cabe3fd
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["es2015", "stage-2"]
}
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,20 @@ this.$insProgress.height(4) // resize the height of loading bar to 4px
```


## Browsers Support

`Support ins-style progress in modern browsers and IE 10+`

`Support purple progress in IE 9`


## Source

Repository: [vue-ins-progress-bar](https://github.com/meloalright/vue-ins-progress-bar)      

Author: [@meloalright](https://github.com/meloalright)
Contributors: [contributors](https://github.com/meloalright/vue-ins-progress-bar/graphs/contributors)

Author: [meloalright](https://github.com/meloalright)


## License
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-ins-progress-bar.js

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-ins-progress-bar",
"author": "meloalright",
"version": "1.0.0",
"version": "1.1.7",
"description": "A vue ins progress bar",
"main": "dist/vue-ins-progress-bar.js",
"keywords": [
Expand All @@ -17,17 +17,21 @@
"loading progress",
"progress bar"
],
"dependencies": {
"style-loader": "^0.21.0"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"style-loader": "^0.21.0",
"vue": "^2.5.16",
"vue-loader": "^15.2.4",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.15.1",
"webpack-command": "^0.4.1"
},
Expand Down
1 change: 1 addition & 0 deletions src/vue-ins-progress-bar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export default {
</script>
<style scoped>
.ins-progress {
background: #a307ba;
background: #27c4f5 -webkit-gradient(linear,left top,right top,from(#27c4f5),color-stop(#a307ba),color-stop(#fd8d32),color-stop(#70c050),to(#27c4f5));
background: #27c4f5 -webkit-linear-gradient(left,#27c4f5,#a307ba,#fd8d32,#70c050,#27c4f5);
background: #27c4f5 linear-gradient(to right,#27c4f5,#a307ba,#fd8d32,#70c050,#27c4f5);
Expand Down
3 changes: 3 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ module.exports = {
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
"plugins": ["transform-object-assign"]
}
},
{ test: /\.css$/,
loader: 'style-loader!css-loader'
Expand Down

0 comments on commit cabe3fd

Please sign in to comment.