From 7b292985305356818da79b792ad6f6da9cc9e44f Mon Sep 17 00:00:00 2001 From: Tony Ganch Date: Tue, 12 Jul 2016 00:17:22 +0200 Subject: [PATCH 1/5] Build files before publishing --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index b94353e..2558728 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "scripts": { "build": "./scripts/build.sh", "coverage": "./scripts/build.sh && ./scripts/coverage.sh", + "prepublish": "./scripts/build.sh", "test": "./scripts/build.sh && ./scripts/test.sh" } } From e92f9265b015fc9fe6dc4373af4737b0513a1f1e Mon Sep 17 00:00:00 2001 From: Tony Ganch Date: Tue, 12 Jul 2016 00:17:34 +0200 Subject: [PATCH 2/5] v3.0.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2558728..44cf696 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "csscomb-core", - "version": "3.0.1", + "version": "3.0.2", "description": "Framework for writing postprocessors", "dependencies": { "gonzales-pe": "^3.3.6", From a03b1e8776e21979eb88808709fdfe5103eaf2e0 Mon Sep 17 00:00:00 2001 From: Giovanni Piller Cottrer Date: Wed, 13 Jul 2016 23:04:19 +0200 Subject: [PATCH 3/5] Update minimatch to 3.0.2 Closes #11 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 44cf696..f548eea 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Framework for writing postprocessors", "dependencies": { "gonzales-pe": "^3.3.6", - "minimatch": "0.2.12", + "minimatch": "3.0.2", "vow": "0.4.4", "vow-fs": "0.3.2" }, From a43763a837175a3efd8f576c87dbd43046e41c70 Mon Sep 17 00:00:00 2001 From: Tony Ganch Date: Wed, 27 Jul 2016 14:30:17 +0200 Subject: [PATCH 4/5] Use babel-polyfill package instead of babel/polyfill --- package.json | 1 + src/core.js | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index f548eea..555491d 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ }, "devDependencies": { "babel": "^5.5.3", + "babel-polyfill": "^6.9.1", "jscs": "1.13.x", "jshint": "2.8.x", "mocha": "1.20.x", diff --git a/src/core.js b/src/core.js index e3b10e8..252f3bc 100644 --- a/src/core.js +++ b/src/core.js @@ -1,6 +1,4 @@ -if (!global._babelPolyfill) { - require('babel/polyfill'); -} +require('babel-polyfill'); let fs = require('fs'); let gonzales = require('gonzales-pe'); let minimatch = require('minimatch'); From 492448108d4164175297dcc65ab82350b30e2e92 Mon Sep 17 00:00:00 2001 From: Tony Ganch Date: Wed, 27 Jul 2016 14:31:55 +0200 Subject: [PATCH 5/5] v3.0.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 555491d..21a0f2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "csscomb-core", - "version": "3.0.2", + "version": "3.0.3", "description": "Framework for writing postprocessors", "dependencies": { "gonzales-pe": "^3.3.6",