Move old OpenPGP.js to /vendors instead of npm

This commit is contained in:
djmaze 2021-05-01 15:10:04 +02:00
parent a7ae087f18
commit 5e63adc904
78 changed files with 39023 additions and 60 deletions

View file

@ -37,14 +37,14 @@ const jsServiceWorker = () => {
// OpenPGP
const jsOpenPGP = () => {
return gulp
.src('node_modules/openpgp/dist/openpgp.min.js')
.src('vendors/openpgp-2.6.2/dist/openpgp.min.js')
.pipe(gulp.dest(config.paths.staticMinJS));
};
// OpenPGP Worker
const jsOpenPGPWorker = () => {
return gulp
.src('node_modules/openpgp/dist/openpgp.worker.min.js')
.src('vendors/openpgp-2.6.2/dist/openpgp.worker.min.js')
.pipe(gulp.dest(config.paths.staticMinJS));
};