gritty 6.1.0 → 7.1.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,24 @@
1
+ 2022.09.19, v7.1.0
2
+
3
+ feature:
4
+ - package: xterm-addon-webgl v0.13.0
5
+ - package: xterm-addon-fit v0.6.0
6
+ - package: supertape v8.1.0
7
+ - package: xterm v5.0.0
8
+
9
+ 2022.07.23, v7.0.0
10
+
11
+ feature:
12
+ - package: css-minimizer-webpack-plugin v4.0.0
13
+ - (gritty) drop support of node < 16
14
+ - (package) madrun v9.0.6
15
+ - (package) eslint-plugin-putout v16.0.0
16
+ - (package) putout v27.0.1
17
+ - (package) supertape v7.6.0
18
+ - (package) xterm-addon-webgl v0.12.0
19
+ - (package) @iocmd/wait v2.1.0
20
+ - (package) yargs-parser v21.0.1
21
+
1
22
  2021.11.02, v6.1.0
2
23
 
3
24
  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));