build for 2.1.4

This commit is contained in:
Anton Lavrenov 2018-06-15 13:17:05 +07:00
parent a98341b390
commit 66d6ec3080
3 changed files with 20 additions and 11 deletions

View File

@ -1,5 +1,5 @@
/*
* Konva JavaScript Framework v2.1.3
* Konva JavaScript Framework v2.1.4
* http://konvajs.github.io/
* Licensed under the MIT
* Date: Fri Jun 15 2018
@ -21,7 +21,7 @@
var Konva = {
// public
version: '2.1.3',
version: '2.1.4',
// private
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",
"version": "2.1.3",
"version": "2.1.4",
"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",
"typings": "./konva.d.ts",
"scripts": {
@ -10,10 +16,8 @@
"lint": "gulp lint",
"build": "gulp build",
"full-build": "gulp lint && npm t && gulp build",
"test":
"mocha-headless-chrome -f ./test/runner.html -a disable-web-security",
"prettier":
"prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote"
"test": "mocha-headless-chrome -f ./test/runner.html -a disable-web-security",
"prettier": "prettier --write \"src/**/*.js\" \"test/**/*.js\" --single-quote"
},
"devDependencies": {
"chai": "4.1.2",
@ -31,7 +35,12 @@
"mocha": "4.0.1",
"prettier": "^1.9.2"
},
"keywords": ["canvas", "animations", "graphic", "html5"],
"keywords": [
"canvas",
"animations",
"graphic",
"html5"
],
"prettier": {
"singleQuote": true
},