Generate openpgp.js without source map. New source map target is openpgp_debug.js. Change dependency of workers: openpgp.worker.js -> openpgp.js, openpgp.worker.min.js -> openpgp.min.js. Remove openpgp.js with maps from unittests-bundle.js

This commit is contained in:
Thomas Oberndörfer
2014-03-31 16:09:23 +02:00
parent e8ef355604
commit a4598f3bd4
19 changed files with 41 additions and 30 deletions

View File

@@ -1,6 +1,6 @@
'use strict';
var openpgp = typeof window != 'undefined' && window.openpgp ? window.openpgp : require('../../src/index');
var openpgp = typeof window != 'undefined' && window.openpgp ? window.openpgp : require('openpgp');
var chai = require('chai'),
expect = chai.expect;