bitwarden-estensione-browser/gulpfile.js

163 lines
4.9 KiB
JavaScript
Raw Normal View History

const gulp = require('gulp'),
gulpif = require('gulp-if'),
2017-11-08 21:17:09 +01:00
filter = require('gulp-filter'),
replace = require('gulp-replace'),
jshint = require('gulp-jshint'),
2017-02-08 06:18:26 +01:00
googleWebFonts = require('gulp-google-webfonts'),
2017-08-31 21:07:39 +02:00
jeditor = require("gulp-json-editor"),
2017-08-31 21:55:39 +02:00
child = require('child_process'),
2017-09-07 16:42:25 +02:00
zip = require('gulp-zip'),
manifest = require('./src/manifest.json'),
2017-11-16 03:39:48 +01:00
xmlpoke = require('gulp-xmlpoke'),
del = require('del');
2017-11-08 03:45:18 +01:00
const paths = {
build: './build/',
2017-11-08 03:45:18 +01:00
dist: './dist/',
2017-11-22 20:42:44 +01:00
coverage: './coverage/',
2017-11-08 03:45:18 +01:00
npmDir: './node_modules/',
popupDir: './src/popup/',
cssDir: './src/popup/css/'
};
2017-11-16 03:39:48 +01:00
const fontsFilter = [
'!build/popup/fonts/*',
'build/popup/fonts/Open_Sans*.woff',
'build/popup/fonts/fontawesome*.woff'
2017-11-16 03:39:48 +01:00
];
2017-11-22 22:51:33 +01:00
function buildString() {
2017-11-18 19:29:42 +01:00
var build = '';
2017-11-18 04:04:34 +01:00
if (process.env.APPVEYOR_BUILD_NUMBER && process.env.APPVEYOR_BUILD_NUMBER !== '') {
2017-11-18 19:29:42 +01:00
build = `-${process.env.APPVEYOR_BUILD_NUMBER}`;
2017-11-18 04:04:34 +01:00
}
2017-11-22 22:51:33 +01:00
return build;
}
2017-11-18 04:04:34 +01:00
2017-11-22 22:51:33 +01:00
function distFileName(browserName, ext) {
return `dist-${browserName}${buildString()}.${ext}`;
2017-11-18 04:04:34 +01:00
}
function dist(browserName, manifest) {
return gulp.src(paths.build + '**/*')
.pipe(filter(['**', '!build/edge/**/*'].concat(fontsFilter)))
.pipe(gulpif('popup/index.html', replace('__BROWSER__', browserName)))
.pipe(gulpif('manifest.json', jeditor(manifest)))
2017-11-18 04:04:34 +01:00
.pipe(zip(distFileName(browserName, 'zip')))
.pipe(gulp.dest(paths.dist));
}
gulp.task('dist', ['dist:firefox', 'dist:chrome', 'dist:opera', 'dist:edge']);
2017-11-08 21:42:13 +01:00
gulp.task('dist:firefox', (cb) => {
return dist('firefox', (manifest) => {
2017-11-15 22:40:24 +01:00
delete manifest['-ms-preload'];
return manifest;
});
});
2017-11-08 21:42:13 +01:00
gulp.task('dist:opera', (cb) => {
return dist('opera', (manifest) => {
2017-11-15 22:40:24 +01:00
delete manifest['-ms-preload'];
delete manifest.applications;
return manifest;
});
});
2017-11-08 21:42:13 +01:00
gulp.task('dist:chrome', (cb) => {
return dist('chrome', (manifest) => {
2017-11-15 22:40:24 +01:00
delete manifest['-ms-preload'];
delete manifest.applications;
delete manifest.sidebar_action;
delete manifest.commands._execute_sidebar_action;
return manifest;
});
});
// Since Edge extensions require makeappx to be run we temporarily store it in a folder.
2017-11-08 21:42:13 +01:00
gulp.task('dist:edge', (cb) => {
const edgePath = paths.dist + 'Edge/';
const extensionPath = edgePath + 'Extension/';
2017-11-18 04:04:34 +01:00
const fileName = distFileName('edge', 'appx');
const appxPath = paths.dist + fileName;
2017-11-16 03:39:48 +01:00
return del([edgePath, appxPath])
.then(() => edgeCopyBuild(paths.build + '**/*', extensionPath))
2017-11-16 03:39:48 +01:00
.then(() => edgeCopyAssets('./store/windows/**/*', edgePath))
2017-11-08 21:42:13 +01:00
.then(() => {
// makeappx.exe must be in your system's path already
2017-11-16 03:39:48 +01:00
child.spawn('makeappx.exe', ['pack', '/h', 'SHA256', '/d', edgePath, '/p', appxPath]);
2017-11-08 21:42:13 +01:00
return cb;
}, () => {
return cb;
});
});
function edgeCopyBuild(source, dest) {
2017-10-29 03:39:38 +01:00
return new Promise((resolve, reject) => {
gulp.src(source)
.on('error', reject)
2017-11-16 03:39:48 +01:00
.pipe(filter(['**'].concat(fontsFilter)))
.pipe(gulpif('popup/index.html', replace('__BROWSER__', 'edge')))
2017-11-08 21:42:13 +01:00
.pipe(gulpif('manifest.json', jeditor((manifest) => {
2017-11-15 22:40:24 +01:00
delete manifest.applications;
delete manifest.sidebar_action;
delete manifest.commands._execute_sidebar_action;
return manifest;
})))
.pipe(gulp.dest(dest))
.on('end', resolve);
});
}
2017-11-16 03:39:48 +01:00
function edgeCopyAssets(source, dest) {
2017-10-29 03:39:38 +01:00
return new Promise((resolve, reject) => {
gulp.src(source)
.on('error', reject)
.pipe(gulpif('AppxManifest.xml', xmlpoke({
replacements: [{
xpath: '/p:Package/p:Identity/@Version',
value: manifest.version + '.0',
namespaces: {
'p': 'http://schemas.microsoft.com/appx/manifest/foundation/windows10'
}
}]
})))
.pipe(gulp.dest(dest))
.on('end', resolve);
});
}
gulp.task('build', ['lint', 'webfonts']);
2017-11-08 21:42:13 +01:00
gulp.task('webfonts', () => {
return gulp.src('./webfonts.list')
.pipe(googleWebFonts({
fontsDir: 'webfonts',
cssFilename: 'webfonts.css'
}))
.pipe(gulp.dest(paths.cssDir));
});
2017-11-22 20:42:44 +01:00
gulp.task('ci', ['ci:coverage']);
gulp.task('ci:coverage', (cb) => {
return gulp.src(paths.coverage + '**/*')
2017-11-22 22:50:22 +01:00
.pipe(filter(['**', '!coverage/coverage*.zip']))
2017-11-22 22:51:33 +01:00
.pipe(zip(`coverage${buildString()}.zip`))
2017-11-22 20:42:44 +01:00
.pipe(gulp.dest(paths.coverage));
});
// LEGACY CODE!
2017-11-08 21:42:13 +01:00
gulp.task('lint', () => {
2017-07-14 21:34:05 +02:00
return gulp.src([
paths.popupDir + '**/*.js',
'./src/notification/**/*.js',
'./src/scripts/**/*.js'
//'./src/content/**/*.js'
2017-11-16 03:39:48 +01:00
]).pipe(jshint({
esversion: 6
})).pipe(jshint.reporter('default'));
});