build for 2.5.0

This commit is contained in:
Anton Lavrenov
2018-10-24 08:02:06 -05:00
parent 7a95e9ad80
commit 725c967b93
3 changed files with 20 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/* /*
* Konva JavaScript Framework v2.4.2 * Konva JavaScript Framework v2.5.0
* http://konvajs.github.io/ * http://konvajs.github.io/
* Licensed under the MIT * Licensed under the MIT
* Date: Wed Oct 24 2018 * Date: Wed Oct 24 2018
@@ -21,7 +21,7 @@
var Konva = { var Konva = {
// public // public
version: '2.4.2', version: '2.5.0',
// private // private
stages: [], stages: [],

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -1,8 +1,14 @@
{ {
"name": "konva", "name": "konva",
"version": "2.4.2", "version": "2.5.0",
"author": "Anton Lavrenov", "author": "Anton Lavrenov",
"files": ["README.md", "konva.js", "konva.min.js", "src", "konva.d.ts"], "files": [
"README.md",
"konva.js",
"konva.min.js",
"src",
"konva.d.ts"
],
"main": "konva.js", "main": "konva.js",
"typings": "./konva.d.ts", "typings": "./konva.d.ts",
"scripts": { "scripts": {
@@ -10,10 +16,8 @@
"lint": "gulp lint", "lint": "gulp lint",
"build": "gulp build", "build": "gulp build",
"full-build": "gulp lint && npm t && gulp build", "full-build": "gulp lint && npm t && gulp build",
"test": "test": "mocha-headless-chrome -f ./test/runner.html -a disable-web-security",
"mocha-headless-chrome -f ./test/runner.html -a disable-web-security", "prettier": "prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote",
"prettier":
"prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote",
"typescript": "tsc" "typescript": "tsc"
}, },
"devDependencies": { "devDependencies": {
@@ -33,7 +37,12 @@
"mocha-headless-chrome": "^2.0.0", "mocha-headless-chrome": "^2.0.0",
"typescript": "^3.1.3" "typescript": "^3.1.3"
}, },
"keywords": ["canvas", "animations", "graphic", "html5"], "keywords": [
"canvas",
"animations",
"graphic",
"html5"
],
"prettier": { "prettier": {
"singleQuote": true "singleQuote": true
}, },