From 28aa6c827a78c431d9d2595ed98ba22004b4b30d Mon Sep 17 00:00:00 2001 From: etpinard Date: Tue, 17 Nov 2015 10:01:48 -0500 Subject: [PATCH 1/5] minor docs styling: - README trailing '/' - 'Plotly, Inc' not 'Plotly Inc' in package.json --- README.md | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9ab6311bd90..4ffacf7d069 100644 --- a/README.md +++ b/README.md @@ -74,8 +74,8 @@ Open-source clients to the plotly.js APIs are available at these links: |**R / RStudio**| [ropensci/plotly](https://github.com/ropensci/plotly) | [plot.ly/r/getting-started](https://plot.ly/r/getting-started) | |**Python / Pandas / IPython notebook**| [plotly/plotly.py](https://github.com/plotly/plotly.py) | [plot.ly/python/getting-started](https://plot.ly/python/getting-started) | |**MATLAB**| [plotly/matlab-api](https://github.com/plotly/matlab-api) | [plot.ly/matlab/getting-started](https://plot.ly/matlab/getting-started) | -|**node.js**| [plotly/plotly-nodejs](https://github.com/plotly/plotly-nodejs) | [plot.ly/nodejs/getting-started/](https://plot.ly/nodejs/getting-started) | -|**Julia**| [plotly/Plotly.jl](https://github.com/plotly/Plotly.jl) | [plot.ly/julia/getting-started/](https://plot.ly/julia/getting-started) | +|**node.js**| [plotly/plotly-nodejs](https://github.com/plotly/plotly-nodejs) | [plot.ly/nodejs/getting-started](https://plot.ly/nodejs/getting-started) | +|**Julia**| [plotly/Plotly.jl](https://github.com/plotly/Plotly.jl) | [plot.ly/julia/getting-started](https://plot.ly/julia/getting-started) | plotly.js charts can also be created and saved online for free at [plot.ly/plot](https://plot.ly/plot). @@ -94,6 +94,6 @@ plotly.js charts can also be created and saved online for free at [plot.ly/plot] Code and documentation copyright 2015 Plotly, Inc. -Code released under [the MIT license](https://github.com/plotly/plotly.js/blob/master/LICENSE). +Code released under the [MIT license](https://github.com/plotly/plotly.js/blob/master/LICENSE). -Docs released under [Creative Commons](https://github.com/plotly/documentation/blob/source/LICENSE). +Docs released under the [Creative Commons](https://github.com/plotly/documentation/blob/source/LICENSE). diff --git a/package.json b/package.json index aa4c22dc43d..05a46c123f3 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "bugs": { "url": "https://github.com/plotly/plotly.js/issues" }, - "author": "Plotly Inc.", + "author": "Plotly, Inc.", "keywords": [ "graphing", "plotting", From 01810e944db9f6078b8e45b4f83e2ec63ec23466 Mon Sep 17 00:00:00 2001 From: etpinard Date: Tue, 17 Nov 2015 10:02:19 -0500 Subject: [PATCH 2/5] add version and postversion npm scripts --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 05a46c123f3..7a64a412fe1 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,9 @@ "test": "npm run test-jasmine && npm test-image", "start-test_dashboard": "node devtools/test_dashboard/server.js", "start-image_viewer": "node devtools/image_viewer/server.js", - "baseline": "./tasks/baseline.sh" + "baseline": "./tasks/baseline.sh", + "version": "npm run build && git add -A dist", + "postversion": "git push && git push --tags" }, "dependencies": { "3d-view": "^2.0.0", From d236267a3f716fac89f2a77244f7b050506388dc Mon Sep 17 00:00:00 2001 From: etpinard Date: Tue, 17 Nov 2015 10:36:22 -0500 Subject: [PATCH 3/5] be more precise about the Creative Commons license --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ffacf7d069..889fdb4e7b8 100644 --- a/README.md +++ b/README.md @@ -96,4 +96,4 @@ Code and documentation copyright 2015 Plotly, Inc. Code released under the [MIT license](https://github.com/plotly/plotly.js/blob/master/LICENSE). -Docs released under the [Creative Commons](https://github.com/plotly/documentation/blob/source/LICENSE). +Docs released under the [Creative Commons license](https://github.com/plotly/documentation/blob/source/LICENSE). From 808ed07e3a6412c8a0fe220ede8d245d2d896629 Mon Sep 17 00:00:00 2001 From: etpinard Date: Tue, 17 Nov 2015 10:41:28 -0500 Subject: [PATCH 4/5] add npmignore file --- .npmignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000000..e9d76bff5d6 --- /dev/null +++ b/.npmignore @@ -0,0 +1,6 @@ +build/* +!build/README.md + +devtools +test +circle.yml From 393d74c6ab08a10e1b28ffd5e87db8bc200550c7 Mon Sep 17 00:00:00 2001 From: etpinard Date: Tue, 17 Nov 2015 10:45:34 -0500 Subject: [PATCH 5/5] add dist/extras/mathjax --- .npmignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.npmignore b/.npmignore index e9d76bff5d6..2d733a31b13 100644 --- a/.npmignore +++ b/.npmignore @@ -3,4 +3,6 @@ build/* devtools test +dist/extras/mathjax + circle.yml