Prebuilt module for commit 2667dc159e

This commit is contained in:
Paper.js Bot 2016-07-09 13:52:27 +00:00
parent d8bf91a43c
commit 361a970482
7 changed files with 20 additions and 6 deletions

View file

@ -248,6 +248,8 @@ contribute to the code.
rounding (#1045).
- Improve reliability of fat-line clipping for curves that are very similar
(#904).
- Improve precision of `Numerical.solveQuadratic()` and
`Numerical.solveCubic()` for edge-cases (#1085).
### Removed
- Canvas attributes "resize" and "data-paper-resize" no longer cause paper to

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Jul 9 14:32:01 2016 +0200
* Date: Sat Jul 9 15:48:21 2016 +0200
*
***
*

2
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Jul 9 14:32:01 2016 +0200
* Date: Sat Jul 9 15:48:21 2016 +0200
*
***
*

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Jul 9 14:32:01 2016 +0200
* Date: Sat Jul 9 15:48:21 2016 +0200
*
***
*

2
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Jul 9 14:32:01 2016 +0200
* Date: Sat Jul 9 15:48:21 2016 +0200
*
***
*

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Sat Jul 9 14:32:01 2016 +0200
* Date: Sat Jul 9 15:48:21 2016 +0200
*
***
*

View file

@ -15,10 +15,20 @@
],
"main": "dist/paper-full.js",
"scripts": {
"lint": "jshint src",
"prepublish": "gulp minify",
"build": "gulp build",
"dist": "gulp dist",
"docs": "gulp docs",
"load": "gulp load",
"jshint": "gulp jshint",
"test": "gulp test"
},
"pre-commit": [
"jshint"
],
"pre-push": [
"test"
],
"files": [
"AUTHORS.md",
"dist/",
@ -60,6 +70,8 @@
"jshint": "^2.9.2",
"jshint-summary": "^0.4.0",
"merge-stream": "^1.0.0",
"pre-commit": "^1.1.3",
"pre-push": "^0.1.1",
"prepro": "^2.4.0",
"qunitjs": "^1.20.0",
"require-dir": "^0.3.0",