Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzhenn committed Jan 20, 2017
0 parents commit 4188afb
Show file tree
Hide file tree
Showing 17 changed files with 1,207 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .babelrc
@@ -0,0 +1,11 @@
{
"presets": [
["es2015", { "loose" : true, "modules" : false }]
],
"plugins" : [
"transform-proto-to-assign"
],
"ignore": [
"dist/*.js"
]
}
20 changes: 20 additions & 0 deletions .editorconfig
@@ -0,0 +1,20 @@
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[{package,bower}.json]
indent_style = space
indent_size = 2

[.travis.yml]
indent_style = space
indent_size = 2
2 changes: 2 additions & 0 deletions .eslintignore
@@ -0,0 +1,2 @@
karma.conf.js
maptalks.heatlayer.min.js
16 changes: 16 additions & 0 deletions .eslintrc
@@ -0,0 +1,16 @@
{
"root": true,
"env": {
"browser": true,
"es6": true
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"extends": "maptalks",
"globals": {
},
"rules": {
}
}
48 changes: 48 additions & 0 deletions .gitignore
@@ -0,0 +1,48 @@
.tmp/
*.gz
.idea/
*.iml
.tern-port
doc/

### *tags
GPATH
GRTAGS
GTAGS
TAGS

### OSX template
.DS_Store

# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
logs
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules

#example deploy config
examples/replace.json
14 changes: 14 additions & 0 deletions .npmignore
@@ -0,0 +1,14 @@
coverage/
doc/
src/
test/
gulpfile.js
jsdoc.json
karma.conf.js
.editorconfig
.eslintrc
.eslintignore
.gitignore
.projectile
API.md
circle.yml
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2016 Fu Zhen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
5 changes: 5 additions & 0 deletions README.md
@@ -0,0 +1,5 @@
# maptalks.e3.js

[![CircleCI](https://circleci.com/gh/maptalks/maptalks.e3.js.svg?style=shield)](https://circleci.com/gh/maptalks/maptalks.e3.js)

A plugin to integerate ECharts3 with maptalks.js.
3 changes: 3 additions & 0 deletions circle.yml
@@ -0,0 +1,3 @@
machine:
node:
version: 6.9.0

0 comments on commit 4188afb

Please sign in to comment.