Repository: couchdb-fauxton Updated Branches: refs/heads/master efc2a1e23 -> 7642cadb1
fix: cssclean should not rebase font urls this leads to fonts not being loaded PR: #596 PR-URL: https://github.com/apache/couchdb-fauxton/pull/596 Reviewed-By: Benjamin Keen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/7642cadb Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/7642cadb Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/7642cadb Branch: refs/heads/master Commit: 7642cadb1e8d771307dc0b64ef10509ff440f5fe Parents: efc2a1e Author: Robert Kowalski <[email protected]> Authored: Wed Jan 6 11:30:45 2016 +0100 Committer: Robert Kowalski <[email protected]> Committed: Wed Jan 6 19:33:14 2016 +0100 ---------------------------------------------------------------------- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/7642cadb/package.json ---------------------------------------------------------------------- diff --git a/package.json b/package.json index 5e588db..84d9966 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "stylecheck": "eslint --ext=js,jsx .", "build:less:debug": "mkdirp ./dist/debug/css && node ./build-helper/less.js dist/debug/css/index.css", "build:less:release": "mkdirp ./dist/tmp-out && node ./build-helper/less.js dist/tmp-out/index.css", - "build:css-compress": "mkdirp ./dist/release/css/ && cleancss -o dist/release/css/index.css dist/tmp-out/index.css", + "build:css-compress": "mkdirp ./dist/release/css/ && cleancss --skip-rebase -o dist/release/css/index.css dist/tmp-out/index.css", "build:uglify": "mkdirp ./dist/release/js/ && uglifyjs --mangle --compress=warnings=false --screw-ie8 -o dist/release/js/require.js dist/tmp-out/require.js", "test": "grunt test", "couchdebug": "grunt couchdebug",
