Skip to content

Commit

Permalink
Publish 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwep committed Jun 4, 2019
1 parent 5b4756f commit e463345
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
alt="JSDelivr download count"
src="https://data.jsdelivr.com/v1/package/npm/@simonwep/pickr/badge"></a>
<img alt="Current version"
src="https://img.shields.io/badge/version-0.6.3-f1c40f.svg?style=popout-square">
src="https://img.shields.io/badge/version-0.6.4-f1c40f.svg?style=popout-square">
<a href="https://www.patreon.com/simonwep"><img
alt="Support me"
src="https://img.shields.io/badge/patreon-support-f1c40f.svg?style=popout-square"></a>
Expand Down
4 changes: 2 additions & 2 deletions dist/pickr.es5.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pickr.es5.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pickr.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/pickr.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/pickr.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@simonwep/pickr",
"version": "0.6.3",
"version": "0.6.4",
"license": "MIT",
"author": "Simon Reinisch <[email protected]>",
"description": "Flat, Simple, Hackable Color-Picker.",
Expand Down
3 changes: 2 additions & 1 deletion scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const fs = require('fs');
// Chaining promises to prevent issues caused by both filename configurations
// writing a minified CSS file; both processes having handles on the files can
// result in strange suffixes that fail to parse due to an extra `ap*/`
bundles.reduce((memo, { filename, babelConfig }) => {
bundles.reduce((memo, {filename, babelConfig}) => {
memo = memo.then(() => {
return new Promise((resolve, reject) => {
console.log(chalk.yellow(`[START] Build ${filename}...`));
Expand Down Expand Up @@ -88,6 +88,7 @@ bundles.reduce((memo, { filename, babelConfig }) => {
});
});
});

return memo;
}, Promise.resolve());

Expand Down
2 changes: 1 addition & 1 deletion src/js/pickr.js
Original file line number Diff line number Diff line change
Expand Up @@ -762,5 +762,5 @@ Pickr.utils = _;
Pickr.create = options => new Pickr(options);

// Assign version and export
Pickr.version = '0.6.3';
Pickr.version = '0.6.4';
export default Pickr;

0 comments on commit e463345

Please sign in to comment.