Skip to content

Commit

Permalink
Merge pull request #265 from jaimedp/npm
Browse files Browse the repository at this point in the history
Use es6 modules and webpack in prep for NPM publish
  • Loading branch information
narenranjit committed Jan 3, 2018
2 parents 81b9840 + f2d53b5 commit 5372ab4
Show file tree
Hide file tree
Showing 77 changed files with 5,155 additions and 23,950 deletions.
9 changes: 9 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"presets": [
["env", {
"targets": {
"browsers": ["ie 11", "> 1%", "Firefox ESR"]
}
}]
]
}
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,11 @@ npm-debug.log
node_modules/


# Sublime specific #
# IDE specific #
####################
sftp-config*
*.sublime-*
.vscode

# Simulate #
############
Expand All @@ -81,4 +82,4 @@ Cakefile
bower_components/
/documentation/
examples/demo.html
dist/contour.js.map
dist/
8 changes: 3 additions & 5 deletions src/scripts/.jshintrc → .jshintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"esversion": 6,
"browser": true,
"jasmine": true,
"browserify": true,
"node": true,
"curly": false,
"devel": true,
"eqeqeq": true,
Expand All @@ -24,11 +27,6 @@
"eqnull": true,
"sub": true,
"globals": {
"nwt": true,
"Contour": true,
"d3": true,
"module": true,
"define": true,
"canvg": true
}
}

0 comments on commit 5372ab4

Please sign in to comment.