Use dist/openpgp instead of src/index because of future ES6 transpilation under node

This commit is contained in:
Tankred Hase
2016-01-22 16:13:21 +07:00
parent 86f042c480
commit f729efa873
18 changed files with 18 additions and 18 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('../../dist/openpgp');
var chai = require('chai'),
expect = chai.expect;