commit
0e34095924
6 changed files with 4832 additions and 793 deletions
|
@ -1,6 +1,6 @@
|
||||||
import {
|
import {
|
||||||
WINDOWS_CREATE, WINDOWS_REMOVE, WINDOWS_GET,
|
WINDOWS_CREATE, WINDOWS_REMOVE, WINDOWS_GET,
|
||||||
TABS_CREATE, TABS_REMOVE, TABS_SELECT_AT, TABS_GET_ZOOM, TABS_SET_ZOOM,
|
TABS_CREATE, TABS_SELECT_AT, TABS_GET_ZOOM, TABS_SET_ZOOM,
|
||||||
EVENT_KEYPRESS, EVENT_KEYDOWN, EVENT_KEYUP,
|
EVENT_KEYPRESS, EVENT_KEYDOWN, EVENT_KEYUP,
|
||||||
SCROLL_GET, SCROLL_SET,
|
SCROLL_GET, SCROLL_SET,
|
||||||
} from '../shared/messages';
|
} from '../shared/messages';
|
||||||
|
@ -20,8 +20,6 @@ receiveContentMessage((message) => {
|
||||||
url: message.url,
|
url: message.url,
|
||||||
windowId: message.windowId,
|
windowId: message.windowId,
|
||||||
});
|
});
|
||||||
case TABS_REMOVE:
|
|
||||||
return browser.tabs.remove(message.tabId);
|
|
||||||
case TABS_SELECT_AT:
|
case TABS_SELECT_AT:
|
||||||
return tabs.selectAt({
|
return tabs.selectAt({
|
||||||
windowId: message.windowId,
|
windowId: message.windowId,
|
||||||
|
|
|
@ -14,19 +14,6 @@ config = {
|
||||||
filename: '[name].js'
|
filename: '[name].js'
|
||||||
},
|
},
|
||||||
|
|
||||||
module: {
|
|
||||||
loaders: [
|
|
||||||
{
|
|
||||||
test: [ /\.js$/ ],
|
|
||||||
exclude: /node_modules/,
|
|
||||||
loader: 'babel-loader',
|
|
||||||
query: {
|
|
||||||
presets: ['es2015']
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
|
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: [ '.js' ],
|
extensions: [ '.js' ],
|
||||||
modules: [path.join(__dirname, 'src'), 'node_modules']
|
modules: [path.join(__dirname, 'src'), 'node_modules']
|
||||||
|
|
|
@ -34,7 +34,6 @@ module.exports = function (config) {
|
||||||
},
|
},
|
||||||
|
|
||||||
reporters: ['mocha'],
|
reporters: ['mocha'],
|
||||||
browserDisconnectTimeout: 5000,
|
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
require('./karma-webext-launcher'),
|
require('./karma-webext-launcher'),
|
||||||
|
@ -42,5 +41,11 @@ module.exports = function (config) {
|
||||||
'karma-webpack',
|
'karma-webpack',
|
||||||
'karma-mocha-reporter',
|
'karma-mocha-reporter',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
client: {
|
||||||
|
mocha: {
|
||||||
|
timeout: 5000
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
5568
package-lock.json
generated
5568
package-lock.json
generated
File diff suppressed because it is too large
Load diff
25
package.json
25
package.json
|
@ -2,14 +2,14 @@
|
||||||
"name": "vim-vixen",
|
"name": "vim-vixen",
|
||||||
"description": "Vim vixen",
|
"description": "Vim vixen",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "webpack -w --debug --devtool inline-source-map",
|
"start": "webpack --mode development -w --debug --devtool inline-source-map",
|
||||||
"build": "NODE_ENV=production webpack --progress --display-error-details",
|
"build": "NODE_ENV=production webpack --mode production --progress --display-error-details",
|
||||||
"package": "npm run build && script/package.sh",
|
"package": "npm run build && script/package.sh",
|
||||||
"lint": "eslint --ext .jsx,.js src e2e/ambassador/src",
|
"lint": "eslint --ext .jsx,.js src e2e/ambassador/src",
|
||||||
"test": "karma start",
|
"test": "karma start",
|
||||||
"test:e2e": "karma start e2e/karma.conf.js",
|
"test:e2e": "karma start e2e/karma.conf.js",
|
||||||
"ambassador:start": "webpack -w --debug --context e2e/ambassador --config e2e/ambassador/webpack.config.js --devtool inline-source-map",
|
"ambassador:start": "webpack --mode production -w --debug --context e2e/ambassador --config e2e/ambassador/webpack.config.js --devtool inline-source-map",
|
||||||
"ambassador:build": "webpack --context e2e/ambassador --config e2e/ambassador/webpack.config.js"
|
"ambassador:build": "webpack --mode production --context e2e/ambassador --config e2e/ambassador/webpack.config.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -26,27 +26,26 @@
|
||||||
"babel-cli": "^6.24.1",
|
"babel-cli": "^6.24.1",
|
||||||
"babel-eslint": "^8.0.2",
|
"babel-eslint": "^8.0.2",
|
||||||
"babel-loader": "^7.1.1",
|
"babel-loader": "^7.1.1",
|
||||||
"babel-minify-webpack-plugin": "^0.2.0",
|
|
||||||
"babel-preset-es2015": "^6.24.1",
|
|
||||||
"babel-preset-preact": "^1.1.0",
|
"babel-preset-preact": "^1.1.0",
|
||||||
"chai": "^4.1.1",
|
"chai": "^4.1.1",
|
||||||
"css-loader": "^0.28.4",
|
"css-loader": "^0.28.10",
|
||||||
"eslint": "^4.7.0",
|
"eslint": "^4.7.0",
|
||||||
"eslint-plugin-react": "^7.4.0",
|
"eslint-plugin-react": "^7.4.0",
|
||||||
"html-webpack-plugin": "^2.30.1",
|
"html-webpack-plugin": "^3.0.6",
|
||||||
"karma": "^2.0.0",
|
"karma": "^2.0.0",
|
||||||
"karma-firefox-launcher": "^1.0.1",
|
"karma-firefox-launcher": "^1.0.1",
|
||||||
"karma-html2js-preprocessor": "^1.1.0",
|
"karma-html2js-preprocessor": "^1.1.0",
|
||||||
"karma-mocha": "^1.3.0",
|
"karma-mocha": "^1.3.0",
|
||||||
"karma-mocha-reporter": "^2.2.3",
|
"karma-mocha-reporter": "^2.2.3",
|
||||||
"karma-sourcemap-loader": "^0.3.7",
|
"karma-sourcemap-loader": "^0.3.7",
|
||||||
"karma-webpack": "^2.0.4",
|
"karma-webpack": "^2.0.13",
|
||||||
"mocha": "^5.0.0",
|
"mocha": "^5.0.0",
|
||||||
"node-sass": "^4.5.3",
|
"node-sass": "^4.5.3",
|
||||||
"preact": "^8.2.6",
|
"preact": "^8.2.6",
|
||||||
"sass-loader": "^6.0.6",
|
"sass-loader": "^6.0.7",
|
||||||
"style-loader": "^0.19.0",
|
"style-loader": "^0.20.3",
|
||||||
"web-ext": "github:ueokande/web-ext#patched-2.3.2",
|
"web-ext": "github:ueokande/web-ext#patched-2.4.0",
|
||||||
"webpack": "^3.5.3"
|
"webpack": "^4.1.1",
|
||||||
|
"webpack-cli": "^2.0.11"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
const MinifyPlugin = require("babel-minify-webpack-plugin");
|
|
||||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
|
|
||||||
|
@ -19,13 +18,13 @@ config = {
|
||||||
},
|
},
|
||||||
|
|
||||||
module: {
|
module: {
|
||||||
loaders: [
|
rules: [
|
||||||
{
|
{
|
||||||
test: [ /\.js$/, /\.jsx$/ ],
|
test: [ /\.js$/, /\.jsx$/ ],
|
||||||
exclude: /node_modules/,
|
exclude: /node_modules/,
|
||||||
loader: 'babel-loader',
|
loader: 'babel-loader',
|
||||||
query: {
|
query: {
|
||||||
presets: ['es2015', 'preact']
|
presets: ['preact']
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -57,8 +56,5 @@ config = {
|
||||||
})
|
})
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
if (process.env.NODE_ENV === 'production') {
|
|
||||||
config.plugins.push(new MinifyPlugin());
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = config
|
module.exports = config
|
||||||
|
|
Reference in a new issue