Skip to content

Commit

Permalink
republish
Browse files Browse the repository at this point in the history
  • Loading branch information
asturur committed Aug 23, 2020
1 parent 6dc098b commit 34be924
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [3.6.5]
- republish 3.6.4 as non beta. no differences

## [3.6.4]
- fix(fabric.Image): fix safari drawing bug for using drawImage outside element boundaries #6326
- fix(fabric.Itext): fix copy paste of text with style #6418
Expand Down
2 changes: 1 addition & 1 deletion HEADER.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */

var fabric = fabric || { version: '3.6.4' };
var fabric = fabric || { version: '3.6.5' };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
"homepage": "http://fabricjs.com/",
"version": "3.6.4",
"version": "3.6.5",
"authors": "Juriy Zaytsev <[email protected]>",
"contributors": [
{
Expand Down
4 changes: 3 additions & 1 deletion publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ var pkgObject = JSON.parse(pkgText); // parsed pkg to override its fields
var args = process.argv.slice(2).join(' '); // args will be passed to npm publish (like --dry-run)
var preRelease = process.env.PRE_RELEASE;

console.log(preRelease);

// allow publishing of pre-releases with beta tag
if (preRelease) {
if (preRelease === 'false') {
args = '--tag beta ' + args;
}

Expand Down

0 comments on commit 34be924

Please sign in to comment.