From 91619a42a687ae40ebddf904ee78218410b0d59b Mon Sep 17 00:00:00 2001 From: bugreport0 Date: Wed, 10 Sep 2014 19:25:26 +0300 Subject: [PATCH] switch jszip from npm auto-update to git auto-update Jszip's npm tarball doesn't actually contain a dist directory, or any of the named files. This should actually work. --- ajax/libs/jszip/package.json | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/ajax/libs/jszip/package.json b/ajax/libs/jszip/package.json index f9131c69b..65f0d5a1f 100644 --- a/ajax/libs/jszip/package.json +++ b/ajax/libs/jszip/package.json @@ -22,17 +22,13 @@ "url": "https://github.com/Stuk/jszip" } ], - "npmName": "jszip", - "npmFileMap": [ - { - "basePath": "/dist/", - "files": [ - "jszip-deflate.js", - "jszip-inflate.js", - "jszip-load.js", - "jszip.js", - "jszip.min.js" - ] - } - ] + "autoupdate": { + "source": "git", + "target": "https://github.com/Stuk/jszip.git", + "basePath": "dist/", + "files": [ + "jszip.js", + "jszip.min.js" + ] + } }