Skip to content

Commit

Permalink
Update dependencies to latest major version
Browse files Browse the repository at this point in the history
  • Loading branch information
ochorocho committed Jul 14, 2020
1 parent e46b5d5 commit 9e0a119
Show file tree
Hide file tree
Showing 5 changed files with 805 additions and 815 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ before_install:
before_script:
- yarn install
script:
- 'yarn build
'
- 'yarn build'
deploy:
provider: releases
api_key:
Expand Down
2 changes: 1 addition & 1 deletion addon/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"manifest_version": 2,
"name": "syspass",
"short_name": "sysPass Browser integration",
"version": "1.6.5",
"version": "1.6.6",
"default_locale": "en",
"homepage_url": "https://github.com/ochorocho/syspass-addon",
"icons": {
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
},
"license": "MPL-2.0",
"devDependencies": {
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"copy-webpack-plugin": "^6.0.3",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
Expand All @@ -26,16 +26,16 @@
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.3",
"extract-loader": "^3.1.0",
"file-loader": "^5.0.2",
"eslint-loader": "^4.0.2",
"extract-loader": "^5.1.0",
"file-loader": "^6.0.0",
"node-sass": "^4.13.1",
"postcss-inline-svg": "^4.1.0",
"postcss-loader": "^3.0.0",
"postcss-svgo": "^4.0.2",
"sass-lint": "^1.13.1",
"sass-lint-webpack": "^1.0.2",
"sass-loader": "^8.0.2",
"sass-loader": "^9.0.2",
"style-loader": "^1.1.3",
"web-ext": "^4.0.0",
"webextension-polyfill": "^0.6.0",
Expand Down
10 changes: 6 additions & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ module.exports = {
ignored: ['dist', 'node_modules']
},
plugins: [
new CopyWebpackPlugin([
{ from: 'addon', to: './' },
{ from: 'node_modules/webextension-polyfill/dist/browser-polyfill.js', to: './polyfill.js' }
]),
new CopyWebpackPlugin({
patterns: [
{ from: 'addon', to: './' },
{ from: 'node_modules/webextension-polyfill/dist/browser-polyfill.js', to: './polyfill.js' }
]
}),
new SassLintPlugin()
],
optimization: {
Expand Down
Loading

0 comments on commit 9e0a119

Please sign in to comment.