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
|
.idea
|
||||||
node_modules
|
node_modules
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
lib/
|
|
||||||
css/
|
css/
|
||||||
dist/
|
dist/
|
||||||
webfonts/
|
webfonts/
|
||||||
|
|
|
@ -15,7 +15,6 @@ const paths = {
|
||||||
build: './build/',
|
build: './build/',
|
||||||
dist: './dist/',
|
dist: './dist/',
|
||||||
coverage: './coverage/',
|
coverage: './coverage/',
|
||||||
libDir: './src/lib/',
|
|
||||||
npmDir: './node_modules/',
|
npmDir: './node_modules/',
|
||||||
popupDir: './src/popup/',
|
popupDir: './src/popup/',
|
||||||
cssDir: './src/popup/css/'
|
cssDir: './src/popup/css/'
|
||||||
|
@ -154,12 +153,9 @@ gulp.task('ci:coverage', (cb) => {
|
||||||
gulp.task('lint', () => {
|
gulp.task('lint', () => {
|
||||||
return gulp.src([
|
return gulp.src([
|
||||||
paths.popupDir + '**/*.js',
|
paths.popupDir + '**/*.js',
|
||||||
'./src/services/**/*.js',
|
|
||||||
'./src/notification/**/*.js',
|
'./src/notification/**/*.js',
|
||||||
'./src/scripts/**/*.js',
|
'./src/scripts/**/*.js'
|
||||||
//'./src/content/**/*.js',
|
//'./src/content/**/*.js'
|
||||||
'./src/overlay/**/*.js',
|
|
||||||
'./src/background.js'
|
|
||||||
]).pipe(jshint({
|
]).pipe(jshint({
|
||||||
esversion: 6
|
esversion: 6
|
||||||
})).pipe(jshint.reporter('default'));
|
})).pipe(jshint.reporter('default'));
|
||||||
|
|
|
@ -116,7 +116,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"web_accessible_resources": [
|
"web_accessible_resources": [
|
||||||
"overlay/popup.html",
|
|
||||||
"notification/bar.html"
|
"notification/bar.html"
|
||||||
],
|
],
|
||||||
"-ms-preload": {
|
"-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