-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 first commit to support pyecharts 0.3.2+ release
- Loading branch information
0 parents
commit f2d8178
Showing
625 changed files
with
4,134 additions
and
0 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,2 @@ | ||
*~ | ||
node_modules/* |
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,8 @@ | ||
# assets | ||
|
||
For django and Flask developers, this project is the turn key solution for hosting pyecharts javascript assets. It | ||
can be placed as it is into your server and its gh-pages acts as the default content delivery host when you evaluate pyecharts for web purposes. | ||
|
||
## license | ||
|
||
It includes echarts from Baidu Inc. |
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,19 @@ | ||
var gulp = require('gulp') | ||
var rename = require('gulp-rename'); | ||
|
||
const FILES =[ | ||
'!./node_modules/jupyter-echarts/echarts/main.js', | ||
'!./node_modules/echarts-countries-js/echarts-countries-js/index.js', | ||
'!./node_modules/echarts-china-provinces-js/echarts-china-provinces-js/index.js', | ||
'!./node_modules/echarts-china-cities-js/echarts-china-cities-js/index.js', | ||
'./node_modules/jupyter-echarts/echarts/*.js', | ||
'./node_modules/echarts-countries-js/echarts-countries-js/*.js', | ||
'./node_modules/echarts-china-provinces-js/echarts-china-provinces-js/*.js', | ||
'./node_modules/echarts-china-cities-js/echarts-china-cities-js/*.js' | ||
] | ||
|
||
gulp.task('default', function(){ | ||
gulp.src(FILES) | ||
.pipe(rename({dirname:''})) | ||
.pipe(gulp.dest('js')); | ||
}); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.