gritty 6.1.0 → 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 +13 -0
- package/README.md +1 -4
- package/bin/gritty.js +2 -2
- package/dist/gritty.js +1616 -1469
- package/dist/gritty.js.map +1 -1
- package/dist-dev/gritty.js +160 -161
- package/package.json +12 -11
- package/server/gritty.js +5 -3
package/ChangeLog
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
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
|
+
|
|
1
14
|
2021.11.02, v6.1.0
|
|
2
15
|
|
|
3
16
|
feature:
|
package/README.md
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
# Gritty [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![
|
|
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
|
|
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));
|