Skip to content

Commit e01893f

Browse files
authored
Merge pull request #2 from gruntjs/pkg-update
Package updates
2 parents 758d9d9 + d1110e8 commit e01893f

File tree

4 files changed

+52
-16
lines changed

4 files changed

+52
-16
lines changed

.github/workflows/test.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Tests
2+
3+
on: [push, pull_request]
4+
5+
env:
6+
FORCE_COLOR: 2
7+
8+
jobs:
9+
run:
10+
name: Node ${{ matrix.node }} on ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
node: [20]
17+
os: [ubuntu-latest, windows-latest]
18+
19+
steps:
20+
- name: Clone repository
21+
uses: actions/checkout@v3
22+
23+
- name: Set up Node.js
24+
uses: actions/setup-node@v3
25+
with:
26+
node-version: ${{ matrix.node }}
27+
28+
- name: Install npm dependencies
29+
run: npm i
30+
31+
- name: Run tests
32+
run: npm test
33+
34+
# We test multiple Windows shells because of prior stdout buffering issues
35+
# filed against Grunt. https://github.com/joyent/node/issues/3584
36+
- name: Run PowerShell tests
37+
run: "npm test # PowerShell" # Pass comment to PS for easier debugging
38+
shell: powershell
39+
if: startsWith(matrix.os, 'windows')

.travis.yml

-6
This file was deleted.

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# exit [![Build Status](https://secure.travis-ci.org/cowboy/node-exit.png?branch=master)](http://travis-ci.org/cowboy/node-exit)
1+
# exit-x
2+
3+
Fork of unmaintained https://github.com/cowboy/node-exit
24

35
A replacement for process.exit that ensures stdio are fully drained before exiting.
46

@@ -11,10 +13,11 @@ Tested in OS X 10.8, Windows 7 on Node.js 0.8.25 and 0.10.18.
1113
Based on some code by [@vladikoff](https://github.com/vladikoff).
1214

1315
## Getting Started
16+
1417
Install the module with: `npm install exit`
1518

1619
```javascript
17-
var exit = require('exit');
20+
var exit = require("exit");
1821

1922
// These lines should appear in the output, EVEN ON WINDOWS.
2023
console.log("omg");
@@ -63,13 +66,16 @@ C:\node-exit\test\fixtures>
6366
```
6467

6568
## Contributing
69+
6670
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
6771

6872
## Release History
73+
6974
2013-11-26 - v0.1.2 - Fixed a bug with hanging processes.
7075
2013-09-26 - v0.1.1 - Fixed some bugs. It seems to actually work now!
7176
2013-09-20 - v0.1.0 - Initial release.
7277

7378
## License
79+
7480
Copyright (c) 2013 "Cowboy" Ben Alman
7581
Licensed under the MIT license.

package.json

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
{
2-
"name": "exit",
2+
"name": "exit-x",
33
"description": "A replacement for process.exit that ensures stdio are fully drained before exiting.",
4-
"version": "0.1.2",
4+
"version": "0.2.0",
55
"homepage": "https://github.com/cowboy/node-exit",
6-
"author": {
7-
"name": "\"Cowboy\" Ben Alman",
8-
"url": "http://benalman.com/"
9-
},
6+
"author": "Grunt Development Team (https://gruntjs.com/development-team)",
107
"repository": {
118
"type": "git",
12-
"url": "git://github.com/cowboy/node-exit.git"
9+
"url": "git://github.com/gruntjs/node-exit-x.git"
1310
},
1411
"bugs": {
15-
"url": "https://github.com/cowboy/node-exit/issues"
12+
"url": "https://github.com/gruntjs/node-exit/issues"
1613
},
1714
"license": "MIT",
1815
"main": "lib/exit",

0 commit comments

Comments
 (0)