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:
parent
3253b4861f
commit
2ca0f6702e
|
@ -2,7 +2,6 @@
|
|||
.idea
|
||||
node_modules
|
||||
npm-debug.log
|
||||
lib/
|
||||
css/
|
||||
dist/
|
||||
webfonts/
|
||||
|
|
|
@ -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'));
|
||||
|
|
|
@ -116,7 +116,6 @@
|
|||
}
|
||||
},
|
||||
"web_accessible_resources": [
|
||||
"overlay/popup.html",
|
||||
"notification/bar.html"
|
||||
],
|
||||
"-ms-preload": {
|
||||
|
|
|
@ -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>
|
Loading…
Reference in New Issue