gritty 6.0.5 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ChangeLog CHANGED
@@ -1,3 +1,34 @@
1
+ 2022.07.23, v7.0.0
2
+
3
+ feature:
4
+ - package: css-minimizer-webpack-plugin v4.0.0
5
+ - (gritty) drop support of node < 16
6
+ - (package) madrun v9.0.6
7
+ - (package) eslint-plugin-putout v16.0.0
8
+ - (package) putout v27.0.1
9
+ - (package) supertape v7.6.0
10
+ - (package) xterm-addon-webgl v0.12.0
11
+ - (package) @iocmd/wait v2.1.0
12
+ - (package) yargs-parser v21.0.1
13
+
14
+ 2021.11.02, v6.1.0
15
+
16
+ feature:
17
+ - (package) eslint-plugin-putout v11.0.0
18
+ - (package) clean-css-loader v4.1.1
19
+ - (package) optimize-css-assets-webpack-plugin v6.0.1
20
+ - (package) xterm v4.14.1
21
+ - (package) supertape v6.10.0
22
+ - (package) putout v21.1.0
23
+
24
+
25
+ 2021.08.15, v6.0.6
26
+
27
+ feature:
28
+ - (package) es6-promisify v7.0.0
29
+
30
+
31
+
1
32
  2021.08.15, v6.0.5
2
33
 
3
34
  feature:
package/README.md CHANGED
@@ -1,10 +1,8 @@
1
- # Gritty [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Dependency Status][DependencyStatusIMGURL]][DependencyStatusURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Coverage Status][CoverageIMGURL]][CoverageURL]
1
+ # Gritty [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Coverage Status][CoverageIMGURL]][CoverageURL]
2
2
 
3
3
  [NPMIMGURL]: https://img.shields.io/npm/v/gritty.svg?style=flat&longCache=true
4
4
  [BuildStatusURL]: https://github.com/cloudcmd/gritty/actions?query=workflow%3A%22Node+CI%22 "Build Status"
5
5
  [BuildStatusIMGURL]: https://github.com/cloudcmd/gritty/workflows/Node%20CI/badge.svg
6
- [DependencyStatusURL]: https://david-dm.org/cloudcmd/gritty "Dependency Status"
7
- [DependencyStatusIMGURL]: https://img.shields.io/david/cloudcmd/gritty.svg?style=flat&longCache=true
8
6
  [LicenseIMGURL]: https://img.shields.io/badge/license-MIT-317BF9.svg?style=flat&longCache=true
9
7
  [NPM_INFO_IMG]: https://nodei.co/npm/cloudcmd.png
10
8
  [NPMURL]: https://npmjs.org/package/cloudcmd "npm"
@@ -161,4 +159,3 @@ server.listen(port, ip);
161
159
  ## License
162
160
 
163
161
  MIT
164
-
package/bin/gritty.js CHANGED
@@ -73,8 +73,8 @@ function start(options) {
73
73
  const app = express();
74
74
  const server = http.createServer(app);
75
75
 
76
- const ip = process.env.IP || /* c9 */
77
- '0.0.0.0';
76
+ const ip = process.env.IP /* c9 */
77
+ || '0.0.0.0';
78
78
 
79
79
  app.use(gritty())
80
80
  .use(express.static(DIR));