mirror of
https://github.com/chylex/Firefox-SCsCC.git
synced 2025-04-09 16:15:43 +02:00
upgrade packages
This commit is contained in:
parent
64fc5978a6
commit
f616cc3281
5314
package-lock.json
generated
5314
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "scscc",
|
||||
"description": "Convert US Dollar, British Pound Sterling and Euro prices to a user set currency",
|
||||
"version": "1.1.0",
|
||||
"version": "1.2.0",
|
||||
"author": "sarics",
|
||||
"homepage": "https://addons.mozilla.org/addon/scscurrencyconverter/",
|
||||
"license": "GPL-2.0",
|
||||
@ -21,15 +21,15 @@
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-loader": "^7.1.2",
|
||||
"babel-preset-env": "^1.6.0",
|
||||
"copy-webpack-plugin": "^4.0.1",
|
||||
"eslint": "^4.5.0",
|
||||
"eslint-config-airbnb-base": "^11.3.2",
|
||||
"eslint-plugin-import": "^2.7.0",
|
||||
"npm-run-all": "^4.1.0",
|
||||
"rimraf": "^2.6.1",
|
||||
"web-ext": "^2.0.0",
|
||||
"webpack": "^3.5.5",
|
||||
"xregexp": "^3.2.0"
|
||||
"babel-preset-env": "^1.6.1",
|
||||
"copy-webpack-plugin": "^4.4.1",
|
||||
"eslint": "^4.18.1",
|
||||
"eslint-config-airbnb-base": "^12.1.0",
|
||||
"eslint-plugin-import": "^2.9.0",
|
||||
"npm-run-all": "^4.1.2",
|
||||
"rimraf": "^2.6.2",
|
||||
"web-ext": "^2.4.0",
|
||||
"webpack": "^3.11.0",
|
||||
"xregexp": "^4.1.1"
|
||||
}
|
||||
}
|
||||
|
@ -2,9 +2,9 @@ const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||
|
||||
const XRegExp = require('xregexp/src/xregexp');
|
||||
const XRegExpUnicodeBase = require('xregexp/src/addons/unicode-base');
|
||||
const XRegExpUnicodeProperties = require('xregexp/src/addons/unicode-properties');
|
||||
const XRegExp = require('xregexp/lib/xregexp');
|
||||
const XRegExpUnicodeBase = require('xregexp/lib/addons/unicode-base');
|
||||
const XRegExpUnicodeProperties = require('xregexp/lib/addons/unicode-properties');
|
||||
|
||||
XRegExpUnicodeBase(XRegExp);
|
||||
XRegExpUnicodeProperties(XRegExp);
|
||||
|
Loading…
Reference in New Issue
Block a user