Merge branch 'package-updates'
build: fix stuff
This commit is contained in:
commit
eebc32b2c9
3 changed files with 1304 additions and 3 deletions
55
app/CHANGELOG.md
Normal file
55
app/CHANGELOG.md
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
### 0.2.10-0 (2019-11-15)
|
||||
|
||||
### 0.2.9 (2019-06-13)
|
||||
|
||||
### 0.2.8 (2019-05-26)
|
||||
|
||||
### 0.2.7 (2018-11-11)
|
||||
|
||||
### 0.2.6 (2018-11-07)
|
||||
|
||||
### 0.2.5 (2018-09-11)
|
||||
|
||||
### 0.2.4 (2018-07-18)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **package:** update ssh2 to version 0.6.1 ([bf15b3e](https://github.com/billchurch/WebSSH2/commit/bf15b3e11d3d0659a3fafdeec616aa6bce719cb7)), closes [#55](https://github.com/billchurch/WebSSH2/issues/55)
|
||||
* **package:** update validator to version 10.1.0 ([1a15fa5](https://github.com/billchurch/WebSSH2/commit/1a15fa57bbea3b137f0c9ce122542d387119ec4a)), closes [#62](https://github.com/billchurch/WebSSH2/issues/62)
|
||||
|
||||
## 0.2.0 (2018-02-10)
|
||||
|
||||
### 0.1.4 (2018-01-30)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* package.json to reduce vulnerabilities ([196d769](https://github.com/billchurch/WebSSH2/commit/196d76922e676945fe74019a4cdfbc73fe286dce))
|
||||
|
||||
### 0.1.3 (2017-09-28)
|
||||
|
||||
### 0.1.2 (2017-08-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* package.json to reduce vulnerabilities ([e65a964](https://github.com/billchurch/WebSSH2/commit/e65a964621b48c76fb45053afcc9dc442e7b2fff))
|
||||
|
||||
### 0.1.1 (2017-06-03)
|
||||
|
||||
## 0.1.0 (2017-05-27)
|
||||
|
||||
### 0.0.5 (2017-03-23)
|
||||
|
||||
### 0.0.4 (2017-03-23)
|
||||
|
||||
### 0.0.3 (2017-02-16)
|
||||
|
||||
### 0.0.2 (2017-02-01)
|
||||
|
||||
### 0.0.1 (2016-07-28)
|
1246
app/package-lock.json
generated
1246
app/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "webssh2",
|
||||
"version": "0.2.9",
|
||||
"version": "0.2.10-0",
|
||||
"ignore": [
|
||||
".gitignore"
|
||||
],
|
||||
|
@ -51,7 +51,8 @@
|
|||
"test": "snyk test",
|
||||
"watch": "nodemon index.js",
|
||||
"standard": "standard --verbose --fix | snazzy",
|
||||
"cleanmac": "find . -name '.DS_Store' -type f -delete"
|
||||
"cleanmac": "find . -name '.DS_Store' -type f -delete",
|
||||
"release": "standard-version"
|
||||
},
|
||||
"standard": {
|
||||
"ignore": [
|
||||
|
@ -76,6 +77,7 @@
|
|||
"postcss-discard-comments": "^4.0.2",
|
||||
"snazzy": "^8.0.0",
|
||||
"standard": "^14.3.1",
|
||||
"standard-version": "^7.0.0",
|
||||
"style-loader": "^1.0.0",
|
||||
"url-loader": "^2.2.0",
|
||||
"webpack": "^4.41.2",
|
||||
|
|
Loading…
Reference in a new issue