1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-27 04:03:00 +02:00

Remove unused overlay directory (#455)

* Remove popup.

* Remove lib from gitignore and gulpfile.

* Remove more overlay references.

* Remove unused parts of the legacy gulp lint.
This commit is contained in:
Oscar Hinton 2018-01-02 20:31:41 +01:00 committed by Kyle Spearrin
parent 3253b4861f
commit 2ca0f6702e
4 changed files with 2 additions and 18 deletions

1
.gitignore vendored
View File

@ -2,7 +2,6 @@
.idea
node_modules
npm-debug.log
lib/
css/
dist/
webfonts/

View File

@ -15,7 +15,6 @@ const paths = {
build: './build/',
dist: './dist/',
coverage: './coverage/',
libDir: './src/lib/',
npmDir: './node_modules/',
popupDir: './src/popup/',
cssDir: './src/popup/css/'
@ -154,12 +153,9 @@ gulp.task('ci:coverage', (cb) => {
gulp.task('lint', () => {
return gulp.src([
paths.popupDir + '**/*.js',
'./src/services/**/*.js',
'./src/notification/**/*.js',
'./src/scripts/**/*.js',
//'./src/content/**/*.js',
'./src/overlay/**/*.js',
'./src/background.js'
'./src/scripts/**/*.js'
//'./src/content/**/*.js'
]).pipe(jshint({
esversion: 6
})).pipe(jshint.reporter('default'));

View File

@ -116,7 +116,6 @@
}
},
"web_accessible_resources": [
"overlay/popup.html",
"notification/bar.html"
],
"-ms-preload": {

View File

@ -1,10 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
</head>
<body style="background-color: white;">
This is the popup!!!
</body>
</html>