2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-13 09:32:20 +00:00

Fix 'npm install'-time warning about outdated companion DT types

```
npm WARN deprecated @types/loglevel@1.6.3: This is a stub types definition. loglevel provides its own type definitions, so you do not need this installed.
npm WARN deprecated @types/electron-packager@15.0.1: This is a stub types definition. electron-packager provides its own type definitions, so you do not need this installed.
```

Also, add `@types/debug` necessary to fix build, as already done by
@TheCleric in https://github.com/nativefier/nativefier/pull/1230/files

Also, for all deps, bump minimum version to current version
This commit is contained in:
Ronan Jouchet 2021-07-16 18:50:45 -04:00
parent c4327e97a7
commit 5d9cb91739
2 changed files with 15 additions and 16 deletions

View File

@ -12,7 +12,7 @@
], ],
"scripts": {}, "scripts": {},
"dependencies": { "dependencies": {
"electron-context-menu": "^3.1.0", "electron-context-menu": "^3.1.1",
"electron-dl": "^3.2.1", "electron-dl": "^3.2.1",
"electron-squirrel-startup": "^1.0.0", "electron-squirrel-startup": "^1.0.0",
"electron-window-state": "^5.0.3", "electron-window-state": "^5.0.3",
@ -20,6 +20,6 @@
"source-map-support": "^0.5.19" "source-map-support": "^0.5.19"
}, },
"devDependencies": { "devDependencies": {
"electron": "^12.0.11" "electron": "^12.0.15"
} }
} }

View File

@ -66,25 +66,24 @@
"yargs": "^17.0.1" "yargs": "^17.0.1"
}, },
"devDependencies": { "devDependencies": {
"@types/electron-packager": "^15.0.1", "@types/debug": "^4.1.6",
"@types/hasbin": "^1.2.0", "@types/hasbin": "^1.2.0",
"@types/jest": "^26.0.23", "@types/jest": "^26.0.24",
"@types/loglevel": "^1.6.3", "@types/ncp": "^2.0.5",
"@types/ncp": "^2.0.4", "@types/node": "^12.20.16",
"@types/node": "^12.20.15", "@types/page-icon": "^0.3.4",
"@types/page-icon": "^0.3.3", "@types/tmp": "^0.2.1",
"@types/tmp": "^0.2.0", "@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/eslint-plugin": "^4.27.0", "@typescript-eslint/parser": "^4.28.3",
"@typescript-eslint/parser": "^4.27.0", "eslint": "^7.30.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0", "eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4", "jest": "^27.0.6",
"prettier": "^2.3.1", "prettier": "^2.3.2",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"ts-loader": "^9.2.3", "ts-loader": "^9.2.3",
"typescript": "^4.3.2", "typescript": "^4.3.5",
"webpack": "^5.38.1", "webpack": "^5.45.1",
"webpack-cli": "^4.7.2" "webpack-cli": "^4.7.2"
}, },
"jest_COMMENTS": { "jest_COMMENTS": {