Skip to content
This repository was archived by the owner on Feb 15, 2025. It is now read-only.

Commit 2fd62e7

Browse files
committed
Update dependencies
1 parent 1011217 commit 2fd62e7

File tree

3 files changed

+89
-28
lines changed

3 files changed

+89
-28
lines changed

CHANGES.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## Dependencies
2+
3+
- @babel/cli: v7.8.4 → [v7.10.3](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7102-2020-05-30)
4+
- @babel/core: v7.9.6 → [v7.10.3](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7102-2020-05-30)
5+
- @babel/plugin-proposal-nullish-coalescing-operator: v7.8.3 → [v7.10.1](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7101-2020-05-27)
6+
- @babel/plugin-proposal-optional-chaining: v7.9.0 → [v7.10.3](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7100-2020-05-26)
7+
- @babel/plugin-syntax-jsx: v7.8.3 → [v7.10.1](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7101-2020-05-27)
8+
- @babel/plugin-transform-react-constant-elements: v7.9.0 → [v7.10.1](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7101-2020-05-27)
9+
- @babel/plugin-transform-react-jsx: v7.9.4 → [v7.10.3](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7100-2020-05-26)
10+
- @babel/plugin-transform-runtime: v7.9.6 → [v7.10.3](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7100-2020-05-26)
11+
- @babel/polyfill: v7.8.7 → [v7.10.1](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7101-2020-05-27)
12+
- @babel/preset-env: v7.9.6 → [v7.10.3](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7100-2020-05-26)
13+
- @babel/preset-flow: v7.9.0 → [v7.10.1](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7101-2020-05-27)
14+
- @babel/preset-react: v7.9.4 → [v7.10.1](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7101-2020-05-27)
15+
- @babel/runtime: v7.9.6 → [v7.10.3](https://github.com/babel/babel/blob/master/CHANGELOG.md#v7100-2020-05-26)
16+
- @pmmmwh/react-refresh-webpack-plugin: v0.3.1 → [v0.3.3](https://github.com/pmmmwh/react-refresh-webpack-plugin/releases)
17+
- autoprefixer: v9.8.0 → [v9.8.4](https://github.com/postcss/autoprefixer/blob/master/CHANGELOG.md#984)
18+
- babel-plugin-inferno: v6.1.0 → v6.1.1
19+
- chalk: v4.0.0 → [v4.1.0](https://github.com/chalk/chalk/releases/tag/v4.1.0)
20+
- copy-webpack-plugin: v6.0.1 → [v6.0.2](https://github.com/webpack-contrib/copy-webpack-plugin/blob/master/CHANGELOG.md#602-2020-06-03)
21+
- cross-spawn: v7.0.2 → [v7.0.3](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md#703-2020-05-25)
22+
- css-loader: v3.5.3 → [v3.6.0](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md#360-2020-06-13)
23+
- fs-extra: v9.0.0 → [v9.0.1](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md#901--2020-06-03)
24+
- inquirer: v7.1.0 → [v7.2.0](https://github.com/SBoudrias/Inquirer.js/releases/tag/inquirer%407.2.0)
25+
- karma: v5.0.9 → [v5.1.0](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md#510-2020-06-11)
26+
- react-refresh: v0.8.2 → [v0.8.3](https://github.com/facebook/react/commits/3ca1904b37ad1f527ff5e31b51373caea67478c5/packages/react-refresh)
27+
- terser-webpack-plugin: v3.0.1 → [v3.0.6](https://github.com/webpack-contrib/terser-webpack-plugin/blob/master/CHANGELOG.md#306-2020-06-18)
28+
129
# 0.25.2 / 2020-05-20
230

331
## Fixed

package-changelog.js

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/**
2+
* Generates changelog Markdown for pinned npm packages in a package.json diff
3+
*
4+
* Usage: git diff package.json | node package-changelog.js
5+
*/
6+
7+
let fs = require('fs')
8+
9+
let changes = fs.readFileSync(0, 'utf-8')
10+
11+
let re = /^(?<change>[+-])\s*"(?<pkg>[^"]+)"\s*:\s*"(?<version>\d+\.\d+\.\d+)"/gm
12+
13+
let deps = new Map()
14+
15+
Array.from(changes.matchAll(re)).forEach(({groups}) => {
16+
if (!deps.has(groups.pkg)) {
17+
deps.set(groups.pkg, {})
18+
}
19+
deps.get(groups.pkg)[groups.change] = groups.version
20+
})
21+
22+
let changelog = Array.from(deps.keys())
23+
.sort()
24+
.map((pkg) => {
25+
let versions = deps.get(pkg)
26+
if (!versions.hasOwnProperty('-')) {
27+
return `- ${pkg}: v${versions['+']}`
28+
}
29+
return `- ${pkg}: v${versions['-']} → [v${versions['+']}]()`
30+
})
31+
.join('\n')
32+
33+
console.log(changelog)

package.json

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -27,47 +27,47 @@
2727
"node": ">=10.13.0"
2828
},
2929
"dependencies": {
30-
"chalk": "4.0.0",
30+
"chalk": "4.1.0",
3131
"copy-template-dir": "1.4.0",
32-
"cross-spawn": "7.0.2",
32+
"cross-spawn": "7.0.3",
3333
"debug": "4.1.1",
3434
"detect-port": "1.3.0",
3535
"figures": "3.2.0",
3636
"filesize": "6.1.0",
37-
"fs-extra": "9.0.0",
37+
"fs-extra": "9.0.1",
3838
"gzip-size": "5.1.1",
39-
"inquirer": "7.1.0",
39+
"inquirer": "7.2.0",
4040
"minimist": "1.2.5",
4141
"ora": "4.0.4",
4242
"resolve": "1.17.0",
4343
"run-series": "1.1.8",
4444
"semver": "7.3.2",
4545
"webpack-merge": "4.2.2",
4646

47-
"@babel/cli": "7.8.4",
48-
"@babel/core": "7.9.6",
49-
"@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3",
50-
"@babel/plugin-proposal-optional-chaining": "7.9.0",
47+
"@babel/cli": "7.10.3",
48+
"@babel/core": "7.10.3",
49+
"@babel/plugin-proposal-nullish-coalescing-operator": "7.10.1",
50+
"@babel/plugin-proposal-optional-chaining": "7.10.3",
5151
"@babel/plugin-syntax-dynamic-import": "7.8.3",
52-
"@babel/plugin-syntax-jsx": "7.8.3",
53-
"@babel/plugin-transform-react-constant-elements": "7.9.0",
54-
"@babel/plugin-transform-react-jsx": "7.9.4",
55-
"@babel/plugin-transform-runtime": "7.9.6",
56-
"@babel/polyfill": "7.8.7",
57-
"@babel/preset-env": "7.9.6",
58-
"@babel/preset-react": "7.9.4",
59-
"@babel/runtime": "7.9.6",
60-
"@pmmmwh/react-refresh-webpack-plugin": "0.3.1",
52+
"@babel/plugin-syntax-jsx": "7.10.1",
53+
"@babel/plugin-transform-react-constant-elements": "7.10.1",
54+
"@babel/plugin-transform-react-jsx": "7.10.3",
55+
"@babel/plugin-transform-runtime": "7.10.3",
56+
"@babel/polyfill": "7.10.1",
57+
"@babel/preset-env": "7.10.3",
58+
"@babel/preset-react": "7.10.1",
59+
"@babel/runtime": "7.10.3",
60+
"@pmmmwh/react-refresh-webpack-plugin": "0.3.3",
6161
"babel-plugin-add-module-exports": "1.0.2",
62-
"babel-plugin-inferno": "6.1.0",
62+
"babel-plugin-inferno": "6.1.1",
6363
"babel-plugin-istanbul": "6.0.0",
6464
"babel-plugin-lodash": "3.3.4",
6565
"babel-plugin-transform-decorators-legacy": "1.3.5",
6666
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
6767
"babel-preset-proposals": "0.3.0",
68-
"react-refresh": "0.8.2",
68+
"react-refresh": "0.8.3",
6969

70-
"karma": "5.0.9",
70+
"karma": "5.1.0",
7171
"karma-chrome-launcher": "3.1.0",
7272
"karma-coverage": "2.0.2",
7373
"karma-mocha": "2.0.1",
@@ -81,11 +81,11 @@
8181
"expect": "1.20.2",
8282

8383
"webpack": "4.43.0",
84-
"autoprefixer": "9.8.0",
84+
"autoprefixer": "9.8.4",
8585
"babel-loader": "8.1.0",
8686
"case-sensitive-paths-webpack-plugin": "2.3.0",
87-
"copy-webpack-plugin": "6.0.1",
88-
"css-loader": "3.5.3",
87+
"copy-webpack-plugin": "6.0.2",
88+
"css-loader": "3.6.0",
8989
"eventsource-polyfill": "0.9.6",
9090
"file-loader": "6.0.0",
9191
"html-webpack-plugin": "4.3.0",
@@ -95,21 +95,21 @@
9595
"open": "7.0.4",
9696
"postcss-loader": "3.0.0",
9797
"style-loader": "1.2.1",
98-
"terser-webpack-plugin": "3.0.1",
98+
"terser-webpack-plugin": "3.0.6",
9999
"url-loader": "4.1.0",
100100
"webpack-dev-middleware": "3.7.2",
101101
"webpack-dev-server": "3.11.0",
102102
"webpack-hot-middleware": "2.25.0"
103103
},
104104
"devDependencies": {
105-
"@babel/preset-flow": "7.9.0",
106-
"@babel/register": "7.9.0",
105+
"@babel/preset-flow": "7.10.1",
106+
"@babel/register": "7.10.3",
107107
"cross-env": "7.0.2",
108108
"eslint-config-jonnybuchanan": "6.0.0",
109109
"eventsource": "1.0.7",
110-
"flow-bin": "0.125.1",
110+
"flow-bin": "0.128.0",
111111
"glob": "7.1.6",
112-
"nyc": "15.0.1",
112+
"nyc": "15.1.0",
113113
"rimraf": "3.0.2",
114114
"temp": "0.9.1",
115115
"tree-kill": "1.2.2"

0 commit comments

Comments
 (0)